forked from Minki/linux
6b0a57ed43
Fail building nfit_test.ko when the configuration is missing pfn device support. Reported-by: Megha Dey <megha.dey@intel.com> Signed-off-by: Dan Williams <dan.j.williams@intel.com>
19 lines
520 B
C
19 lines
520 B
C
#include <linux/kconfig.h>
|
|
#include <linux/bug.h>
|
|
|
|
void check(void)
|
|
{
|
|
/*
|
|
* These kconfig symbols must be set to "m" for nfit_test to
|
|
* load and operate.
|
|
*/
|
|
BUILD_BUG_ON(!IS_MODULE(CONFIG_LIBNVDIMM));
|
|
BUILD_BUG_ON(!IS_MODULE(CONFIG_BLK_DEV_PMEM));
|
|
BUILD_BUG_ON(!IS_MODULE(CONFIG_ND_BTT));
|
|
BUILD_BUG_ON(!IS_MODULE(CONFIG_ND_PFN));
|
|
BUILD_BUG_ON(!IS_MODULE(CONFIG_ND_BLK));
|
|
BUILD_BUG_ON(!IS_MODULE(CONFIG_ACPI_NFIT));
|
|
BUILD_BUG_ON(!IS_MODULE(CONFIG_DEV_DAX));
|
|
BUILD_BUG_ON(!IS_MODULE(CONFIG_DEV_DAX_PMEM));
|
|
}
|