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: David Howells <dhowells@redhat.com>
This commit is contained in:
David Howells 2011-12-13 15:07:49 +00:00
parent e9356f4da3
commit a648bd0c9f

View file

@ -32,7 +32,8 @@
# else # else
# error "could not determine byte order" # error "could not determine byte order"
# endif # endif
#elif defined(__BYTE_ORDER) #else
#if defined(__BYTE_ORDER)
# if __BYTE_ORDER == __BIG_ENDIAN # if __BYTE_ORDER == __BIG_ENDIAN
# define _PATCHKEY(id) (0xfd00|id) # define _PATCHKEY(id) (0xfd00|id)
# elif __BYTE_ORDER == __LITTLE_ENDIAN # elif __BYTE_ORDER == __LITTLE_ENDIAN
@ -41,5 +42,6 @@
# error "could not determine byte order" # error "could not determine byte order"
# endif # endif
#endif #endif
#endif
#endif /* _LINUX_PATCHKEY_H */ #endif /* _LINUX_PATCHKEY_H */