From: Gideon Israel Dsouza Date: Wed, 11 Jun 2014 15:55:30 +0000 (+0530) Subject: security: Used macros from compiler.h instead of __attribute__((...)) X-Git-Tag: v3.17-rc1~57^2~10 X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=4bb9398300a3a2c691e5c0ad6b9cfa78775e767e;p=karo-tx-linux.git security: Used macros from compiler.h instead of __attribute__((...)) To increase compiler portability there is which provides convenience macros for various gcc constructs. Eg: __packed for __attribute__((packed)). This patch is part of a large task I've taken to clean the gcc specific attributes and use the the macros instead. Signed-off-by: Gideon Israel Dsouza Signed-off-by: Paul Moore --- diff --git a/security/selinux/include/security.h b/security/selinux/include/security.h index ce7852cf526b..d1e0b239b602 100644 --- a/security/selinux/include/security.h +++ b/security/selinux/include/security.h @@ -8,6 +8,7 @@ #ifndef _SELINUX_SECURITY_H_ #define _SELINUX_SECURITY_H_ +#include #include #include #include @@ -220,7 +221,7 @@ struct selinux_kernel_status { /* * The version > 0 supports above members. */ -} __attribute__((packed)); +} __packed; extern void selinux_status_update_setenforce(int enforcing); extern void selinux_status_update_policyload(int seqno);