提交 a648bd0c 编写于 作者: D David Howells

UAPI: Make linux/patchkey.h easier to parse

Make linux/patchkey.h easier to parse by making the #elif case associated with
the __KERNEL__ guard a nested #if in a #else of the __KERNEL__ guard.
Signed-off-by: NDavid Howells <dhowells@redhat.com>
上级 e9356f4d
......@@ -32,7 +32,8 @@
# else
# error "could not determine byte order"
# endif
#elif defined(__BYTE_ORDER)
#else
#if defined(__BYTE_ORDER)
# if __BYTE_ORDER == __BIG_ENDIAN
# define _PATCHKEY(id) (0xfd00|id)
# elif __BYTE_ORDER == __LITTLE_ENDIAN
......@@ -41,5 +42,6 @@
# error "could not determine byte order"
# endif
#endif
#endif
#endif /* _LINUX_PATCHKEY_H */
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册