xref: /linux/include/cxl/cxl.h (revision e4de6b910bf3645c224cd873d4e03ce3dd81fbe0)
1 /* SPDX-License-Identifier: GPL-2.0-only */
2 /* Copyright (c) 2026 Advanced Micro Devices, Inc. */
3 #ifndef _CXL_H_
4 #define _CXL_H_
5 
6 #ifdef CONFIG_CXL_REGION
7 bool cxl_region_contains_resource(struct resource *res);
8 #else
9 static inline bool cxl_region_contains_resource(struct resource *res)
10 {
11 	return false;
12 }
13 #endif
14 
15 #endif /* _CXL_H_ */
16