accel/qaic: Add AIC200 support
[drm/drm-misc.git] / tools / testing / memblock / tests / alloc_exact_nid_api.h
blobcef419d55d2aef443ac0e50adf7982ccff646a1d
1 /* SPDX-License-Identifier: GPL-2.0-or-later */
2 #ifndef _MEMBLOCK_ALLOC_EXACT_NID_H
3 #define _MEMBLOCK_ALLOC_EXACT_NID_H
5 #include "common.h"
7 int memblock_alloc_exact_nid_checks(void);
8 int __memblock_alloc_exact_nid_numa_checks(void);
10 #ifdef CONFIG_NUMA
11 static inline int memblock_alloc_exact_nid_numa_checks(void)
13 __memblock_alloc_exact_nid_numa_checks();
14 return 0;
17 #else
18 static inline int memblock_alloc_exact_nid_numa_checks(void)
20 return 0;
23 #endif /* CONFIG_NUMA */
25 #endif