[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Message-Id: <20190728154728.11126-1-yamada.masahiro@socionext.com>
Date: Mon, 29 Jul 2019 00:47:28 +0900
From: Masahiro Yamada <yamada.masahiro@...ionext.com>
To: Andrew Morton <akpm@...ux-foundation.org>
Cc: Arnd Bergmann <arnd@...db.de>,
Masahiro Yamada <yamada.masahiro@...ionext.com>,
linux-kernel@...r.kernel.org
Subject: [PATCH] linux/coff.h: add include guard
Add a header include guard just in case.
Signed-off-by: Masahiro Yamada <yamada.masahiro@...ionext.com>
---
Looks like this file is unused at least in the kernel tree,
but I am not it is OK to delete it.
I am just adding the include guard for the header compile-testing.
include/uapi/linux/coff.h | 5 +++++
1 file changed, 5 insertions(+)
diff --git a/include/uapi/linux/coff.h b/include/uapi/linux/coff.h
index e4a79f80b9a0..ab5c7e847eed 100644
--- a/include/uapi/linux/coff.h
+++ b/include/uapi/linux/coff.h
@@ -11,6 +11,9 @@
more information about COFF, then O'Reilly has a very excellent book.
*/
+#ifndef _UAPI_LINUX_COFF_H
+#define _UAPI_LINUX_COFF_H
+
#define E_SYMNMLEN 8 /* Number of characters in a symbol name */
#define E_FILNMLEN 14 /* Number of characters in a file name */
#define E_DIMNUM 4 /* Number of array dimensions in auxiliary entry */
@@ -350,3 +353,5 @@ struct COFF_reloc {
/* For new sections we haven't heard of before */
#define COFF_DEF_SECTION_ALIGNMENT 4
+
+#endif /* _UAPI_LINUX_COFF_H */
--
2.17.1
Powered by blists - more mailing lists