Go to the documentation of this file.
13 #ifndef _LINUX_PATCHKEY_H_INDIRECT
14 #error "patchkey.h included directly"
17 #ifndef _UAPI_LINUX_PATCHKEY_H
18 #define _UAPI_LINUX_PATCHKEY_H
25 #if !defined(__KERNEL__)
26 #if defined(__BYTE_ORDER)
27 # if __BYTE_ORDER == __BIG_ENDIAN
28 # define _PATCHKEY(id) (0xfd00|id)
29 # elif __BYTE_ORDER == __LITTLE_ENDIAN
30 # define _PATCHKEY(id) ((id<<8)|0x00fd)
32 # error "could not determine byte order"