xref: /openbsd-src/sys/dev/pci/drm/include/linux/kconfig.h (revision 99fd087599a8791921855f21bd7e36130f39aadc)
1 /* Public domain. */
2 
3 #ifndef _LINUX_KCONFIG_H
4 #define _LINUX_KCONFIG_H
5 
6 #include <sys/endian.h>
7 
8 #include <generated/autoconf.h>
9 
10 #define IS_ENABLED(x) x - 0
11 #define IS_BUILTIN(x) 1
12 
13 #if BYTE_ORDER == BIG_ENDIAN
14 #define __BIG_ENDIAN
15 #else
16 #define __LITTLE_ENDIAN
17 #endif
18 
19 #endif
20