diff options
author | Geoff Levand <geoffrey.levand@am.sony.com> | 2007-01-27 06:07:56 +0300 |
---|---|---|
committer | Paul Mackerras <paulus@samba.org> | 2007-02-07 06:03:18 +0300 |
commit | a8229a9e5211a52839268b82ae14cdf528d48f58 (patch) | |
tree | f5bea53b8eb7dae084456efce92e50b471e78d1c /arch/powerpc/platforms/ps3/os-area.c | |
parent | 43d80439c5f619446e174abdbdaff4fc0e539546 (diff) | |
download | linux-a8229a9e5211a52839268b82ae14cdf528d48f58.tar.xz |
[POWERPC] ps3: fix struct alignment attributes
Remove incorrect alignment attributes in PS3 platform code for
struct spe_shadow, struct os_area_header, and struct os_area_params.
Signed-off-by: Geoff Levand <geoffrey.levand@am.sony.com>
Acked-by: Arnd Bergmann <arnd.bergmann@de.ibm.com>
Signed-off-by: Paul Mackerras <paulus@samba.org>
Diffstat (limited to 'arch/powerpc/platforms/ps3/os-area.c')
-rw-r--r-- | arch/powerpc/platforms/ps3/os-area.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/powerpc/platforms/ps3/os-area.c b/arch/powerpc/platforms/ps3/os-area.c index 58358305dc10..b4ac924ada43 100644 --- a/arch/powerpc/platforms/ps3/os-area.c +++ b/arch/powerpc/platforms/ps3/os-area.c @@ -59,7 +59,7 @@ struct os_area_header { u32 ldr_format; u32 ldr_size; u32 _reserved_2[6]; -} __attribute__ ((packed)); +}; enum { PARAM_BOOT_FLAG_GAME_OS = 0, @@ -114,7 +114,7 @@ struct os_area_params { u8 dns_primary[4]; u8 dns_secondary[4]; u8 _reserved_5[8]; -} __attribute__ ((packed)); +}; /** * struct saved_params - Static working copies of data from the 'Other OS' area. |