From: Robert P. J. Day Date: Tue, 29 Apr 2008 08:03:26 +0000 (-0700) Subject: sysv fs: remove superfluous check for __GNUC__ compiler X-Git-Tag: upstream/snapshot3+hdmi~25577 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=dddfbaf8f86894415abb8256b55da68dab966ebe;p=platform%2Fadaptation%2Frenesas_rcar%2Frenesas_kernel.git sysv fs: remove superfluous check for __GNUC__ compiler Since isn't exported to userspace, there is little point checking that this is a GNU-compatible compiler. Signed-off-by: Robert P. J. Day Acked-by: Christoph Hellwig Signed-off-by: Andrew Morton Signed-off-by: Linus Torvalds --- diff --git a/include/linux/sysv_fs.h b/include/linux/sysv_fs.h index e024863..9641130 100644 --- a/include/linux/sysv_fs.h +++ b/include/linux/sysv_fs.h @@ -1,11 +1,7 @@ #ifndef _LINUX_SYSV_FS_H #define _LINUX_SYSV_FS_H -#if defined(__GNUC__) -# define __packed2__ __attribute__((packed, aligned(2))) -#else ->> I want to scream! << -#endif +#define __packed2__ __attribute__((packed, aligned(2))) #ifndef __KERNEL__