xref: /linux/drivers/gpu/drm/amd/display/amdgpu_dm/amdgpu_dm_kunit_helpers.h (revision 0eaed89c18aeedf0898baf2dbf5ff027c6795152)
1 /* SPDX-License-Identifier: MIT */
2 /*
3  * Copyright 2026 Advanced Micro Devices, Inc.
4  */
5 
6 #ifndef AMDGPU_DM_KUNIT_HELPERS_H
7 #define AMDGPU_DM_KUNIT_HELPERS_H
8 
9 #if IS_ENABLED(CONFIG_DRM_AMD_DC_KUNIT_TEST)
10 #define STATIC_IFN_KUNIT
11 #define INLINE_IFN_KUNIT inline
12 #define EXPORT_IF_KUNIT(symbol) EXPORT_SYMBOL(symbol)
13 #else
14 #define STATIC_IFN_KUNIT static
15 #define INLINE_IFN_KUNIT
16 #define EXPORT_IF_KUNIT(symbol)
17 #endif
18 
19 #endif /* AMDGPU_DM_KUNIT_HELPERS_H */
20