diff options
author | David Howells <dhowells@redhat.com> | 2011-12-13 15:07:49 +0000 |
---|---|---|
committer | David Howells <dhowells@redhat.com> | 2011-12-13 15:07:49 +0000 |
commit | a648bd0c9f613d8f9954eccff6009ecfb26e2722 (patch) | |
tree | 40c266d79eee08c5c1e582f85faec6e613337fb9 /include | |
parent | e9356f4da3ffba7ab826ec3ea5f31f414f5b2a95 (diff) |
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>
Diffstat (limited to 'include')
-rw-r--r-- | include/linux/patchkey.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/include/linux/patchkey.h b/include/linux/patchkey.h index d974a6e92372..aefda0ec6e62 100644 --- a/include/linux/patchkey.h +++ b/include/linux/patchkey.h @@ -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 */ |