]> git.kernelconcepts.de Git - karo-tx-linux.git/commitdiff
[PATCH] mpspec: remove unneeded packed attribute
authorBrian Gerst <bgerst@didntduck.org>
Fri, 6 Jan 2006 08:12:18 +0000 (00:12 -0800)
committerLinus Torvalds <torvalds@g5.osdl.org>
Fri, 6 Jan 2006 16:33:39 +0000 (08:33 -0800)
GCC 4.1 gives the following warning: include/asm/mpspec.h:79: warning:
`packed' attribute ignored for field of type `unsigned char'

The packed attribute isn't really necessary anyways so just remove it.

Signed-off-by: Brian Gerst <bgerst@didntduck.org>
Acked-by: Dave Jones <davej@codemonkey.org.uk>
Cc: Andi Kleen <ak@muc.de>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
include/asm-i386/mpspec_def.h
include/asm-x86_64/mpspec.h

index a961093dbf88b315d45604ef39670fab2f28ce24..76feedf85a8a8ce41e8bd5611d3942661817b9dc 100644 (file)
@@ -75,7 +75,7 @@ struct mpc_config_bus
 {
        unsigned char mpc_type;
        unsigned char mpc_busid;
-       unsigned char mpc_bustype[6] __attribute((packed));
+       unsigned char mpc_bustype[6];
 };
 
 /* List of Bus Type string values, Intel MP Spec. */
index 6f8a17d105abaeb7ac90f222b84bea64e64983d4..10248a9a0582e1136624fc987355dae317ce725f 100644 (file)
@@ -76,7 +76,7 @@ struct mpc_config_bus
 {
        unsigned char mpc_type;
        unsigned char mpc_busid;
-       unsigned char mpc_bustype[6] __attribute((packed));
+       unsigned char mpc_bustype[6];
 };
 
 /* List of Bus Type string values, Intel MP Spec. */