Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
at v4.4-rc4 15 lines 387 B view raw
1#include <linux/kconfig.h> 2#include <linux/bug.h> 3 4void check(void) 5{ 6 /* 7 * These kconfig symbols must be set to "m" for nfit_test to 8 * load and operate. 9 */ 10 BUILD_BUG_ON(!IS_MODULE(CONFIG_LIBNVDIMM)); 11 BUILD_BUG_ON(!IS_MODULE(CONFIG_BLK_DEV_PMEM)); 12 BUILD_BUG_ON(!IS_MODULE(CONFIG_ND_BTT)); 13 BUILD_BUG_ON(!IS_MODULE(CONFIG_ND_BLK)); 14 BUILD_BUG_ON(!IS_MODULE(CONFIG_ACPI_NFIT)); 15}