[PATCH 4/9] Staging: bcm: Fix warning: "__packed is preferred over __attribute__((packed))" in Debug.h

Kevin McKinney klmckinney1 at gmail.com
Fri Dec 28 04:18:22 UTC 2012


This patch fixes the following warning: "__packed
is preferred over __attribute__((packed))" as
reported by checkpatch.pl.

Signed-off-by: Kevin McKinney <klmckinney1 at gmail.com>
---
 drivers/staging/bcm/Debug.h |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/staging/bcm/Debug.h b/drivers/staging/bcm/Debug.h
index b4ff000..7a66219 100644
--- a/drivers/staging/bcm/Debug.h
+++ b/drivers/staging/bcm/Debug.h
@@ -175,7 +175,7 @@ typedef struct {
 	unsigned int Subtype, Type;
 	unsigned int OnOff;
 /*	unsigned int debug_level; future expansion */
-} __attribute__((packed)) USER_BCM_DBG_STATE;
+} __packed USER_BCM_DBG_STATE;
 
 /* ---Kernel-space mapping of Debug State */
 typedef struct _S_BCM_DEBUG_STATE {
-- 
1.7.9.5




More information about the devel mailing list