diff options
author | Kyle McMartin <kyle@redhat.com> | 2014-12-18 12:57:14 -0500 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2015-01-27 08:29:37 -0800 |
commit | 937723cf8386bb3d67b997809b8a61cbabd7acb3 (patch) | |
tree | 16d489ba5dd5c40d0c19cdc320038e8df597d7c4 /include | |
parent | 97bb3ed647b3623d8b28f40adcedf5d651065463 (diff) | |
download | lwn-937723cf8386bb3d67b997809b8a61cbabd7acb3.tar.gz lwn-937723cf8386bb3d67b997809b8a61cbabd7acb3.zip |
uapi/linux/target_core_user.h: fix headers_install.sh badness
commit 3875f15207f9ecb3f24a8e91e7ad196899139595 upstream.
scripts/headers_install.sh will transform __packed to
__attribute__((packed)), so the #ifndef is not necessary.
(and, in fact, it's problematic, because we'll end up with the header
containing:
#ifndef __attribute__((packed))
#define __attribu...
and so forth.)
Signed-off-by: Kyle McMartin <kyle@redhat.com>
Signed-off-by: Nicholas Bellinger <nab@linux-iscsi.org>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'include')
-rw-r--r-- | include/uapi/linux/target_core_user.h | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/include/uapi/linux/target_core_user.h b/include/uapi/linux/target_core_user.h index 7dcfbe6771b1..b483d1909d3e 100644 --- a/include/uapi/linux/target_core_user.h +++ b/include/uapi/linux/target_core_user.h @@ -6,10 +6,6 @@ #include <linux/types.h> #include <linux/uio.h> -#ifndef __packed -#define __packed __attribute__((packed)) -#endif - #define TCMU_VERSION "1.0" /* |