aboutsummaryrefslogtreecommitdiffstats
path: root/tools/testing/cxl/config_check.c
blob: de5e5b3652fd39ac92a6d5aa306190f1947a9fc8 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
// SPDX-License-Identifier: GPL-2.0
#include <linux/bug.h>

void check(void)
{
	/*
	 * These kconfig symbols must be set to "m" for cxl_test to load
	 * and operate.
	 */
	BUILD_BUG_ON(!IS_MODULE(CONFIG_CXL_BUS));
	BUILD_BUG_ON(!IS_MODULE(CONFIG_CXL_ACPI));
	BUILD_BUG_ON(!IS_MODULE(CONFIG_CXL_PMEM));
}