// SPDX-License-Identifier: GPL-2.01/* Copyright(c) 2022 Intel Corporation. All rights reserved. */2#ifndef _TEST_CXL_WATERMARK_H_3#define _TEST_CXL_WATERMARK_H_4#include <linux/module.h>5#include <linux/printk.h>67int cxl_acpi_test(void);8int cxl_core_test(void);9int cxl_mem_test(void);10int cxl_pmem_test(void);11int cxl_port_test(void);1213/*14* dummy routine for cxl_test to validate it is linking to the properly15* mocked module and not the standard one from the base tree.16*/17#define cxl_test_watermark(x) \18int x##_test(void) \19{ \20pr_debug("%s for cxl_test\n", KBUILD_MODNAME); \21return 0; \22} \23EXPORT_SYMBOL(x##_test)24#endif /* _TEST_CXL_WATERMARK_H_ */252627