]> Git Repo - linux.git/blob - tools/testing/cxl/config_check.c
arm64: dts: qcom: Use plural _gpios node label for PMIC gpios
[linux.git] / tools / testing / cxl / config_check.c
1 // SPDX-License-Identifier: GPL-2.0
2 #include <linux/bug.h>
3
4 void check(void)
5 {
6         /*
7          * These kconfig symbols must be set to "m" for cxl_test to load
8          * and operate.
9          */
10         BUILD_BUG_ON(!IS_MODULE(CONFIG_CXL_BUS));
11         BUILD_BUG_ON(!IS_MODULE(CONFIG_CXL_ACPI));
12         BUILD_BUG_ON(!IS_MODULE(CONFIG_CXL_PMEM));
13         BUILD_BUG_ON(!IS_ENABLED(CONFIG_CXL_REGION_INVALIDATION_TEST));
14         BUILD_BUG_ON(!IS_ENABLED(CONFIG_NVDIMM_SECURITY_TEST));
15 }
This page took 0.033694 seconds and 4 git commands to generate.