Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 19d53484 authored by Brian Gerst's avatar Brian Gerst Committed by Linus Torvalds
Browse files

[PATCH] mpspec: remove unneeded packed attribute



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: default avatarBrian Gerst <bgerst@didntduck.org>
Acked-by: default avatarDave Jones <davej@codemonkey.org.uk>
Cc: Andi Kleen <ak@muc.de>
Signed-off-by: default avatarAndrew Morton <akpm@osdl.org>
Signed-off-by: default avatarLinus Torvalds <torvalds@osdl.org>
parent bcf0f0d2
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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. */
+1 −1
Original line number Diff line number Diff line
@@ -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. */