Linux kernel mirror (for testing)
git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel
os
linux
fork
Configure Feed
Select the types of activity you want to include in your feed.
1// SPDX-License-Identifier: GPL-2.0
2#include <linux/bug.h>
3
4void 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}