Go to the documentation of this file.
12 #ifndef _LINUX_PATCHKEY_H
13 #define _LINUX_PATCHKEY_H
15 # include <asm/byteorder.h>
18 # if defined(__BIG_ENDIAN)
19 # define _PATCHKEY(id) (0xfd00|id)
20 # elif defined(__LITTLE_ENDIAN)
21 # define _PATCHKEY(id) ((id<<8)|0x00fd)
23 # error "could not determine byte order"