aboutsummaryrefslogtreecommitdiffstats
path: root/arch/arm/nwfpe
diff options
context:
space:
mode:
authorKoen Kooi <koen@dominion.kabel.utwente.nl>2006-07-13 13:04:24 +0100
committerRussell King <rmk+kernel@arm.linux.org.uk>2006-07-13 13:04:24 +0100
commita9da396a37fb3da5d0f212c41c6e96bcbf8fe590 (patch)
tree14cae1ecad305e3503c27e990ef6af329ec36957 /arch/arm/nwfpe
parent[ARM] 3725/1: sharpsl_pm: warn about wrong temperature (diff)
downloadlinux-dev-a9da396a37fb3da5d0f212c41c6e96bcbf8fe590.tar.xz
linux-dev-a9da396a37fb3da5d0f212c41c6e96bcbf8fe590.zip
[ARM] 3729/3: EABI padding rules necessitate the packed attribute of floatx80
Patch from Koen Kooi EABI padding rules necessitate the packed attribute of floatx80, otherwise nwfpe complains about invalid structure sizes. Signed-off-by: Koen Kooi <koen@dominion.kabel.utwente.nl> Signed-off-by: Lennert Buytenhek <buytenh@wantstofly.org> Signed-off-by: Nicolas Pitre <nico@cam.org> Signed-off-by: Russell King <rmk+kernel@arm.linux.org.uk>
Diffstat (limited to 'arch/arm/nwfpe')
-rw-r--r--arch/arm/nwfpe/softfloat.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/arm/nwfpe/softfloat.h b/arch/arm/nwfpe/softfloat.h
index e1125bc39ee4..0a3067452cd2 100644
--- a/arch/arm/nwfpe/softfloat.h
+++ b/arch/arm/nwfpe/softfloat.h
@@ -61,7 +61,7 @@ typedef struct {
u16 __padding;
#endif
u64 low;
-} floatx80;
+} __attribute__ ((packed,aligned(4))) floatx80;
/*
-------------------------------------------------------------------------------