// SPDX-License-Identifier: GPL-2.01// Copyright(c) 2018 Intel Corporation. All rights reserved.2#ifndef _TEST_NVDIMM_WATERMARK_H_3#define _TEST_NVDIMM_WATERMARK_H_4int pmem_test(void);5int libnvdimm_test(void);6int acpi_nfit_test(void);7int device_dax_test(void);8int dax_pmem_test(void);9int dax_pmem_core_test(void);10int dax_pmem_compat_test(void);1112/*13* dummy routine for nfit_test to validate it is linking to the properly14* mocked module and not the standard one from the base tree.15*/16#define nfit_test_watermark(x) \17int x##_test(void) \18{ \19pr_debug("%s for nfit_test\n", KBUILD_MODNAME); \20return 0; \21} \22EXPORT_SYMBOL(x##_test)23#endif /* _TEST_NVDIMM_WATERMARK_H_ */242526