Merge tag 'linux-kselftest-fixes-5.15-rc5' of git://git.kernel.org/pub/scm/linux...
[platform/kernel/linux-rpi.git] / tools / bootconfig / include / linux / memblock.h
1 /* SPDX-License-Identifier: GPL-2.0 */
2 #ifndef _XBC_LINUX_MEMBLOCK_H
3 #define _XBC_LINUX_MEMBLOCK_H
4
5 #include <stdlib.h>
6
7 #define SMP_CACHE_BYTES 0
8 #define memblock_alloc(size, align)     malloc(size)
9 #define memblock_free_ptr(paddr, size)  free(paddr)
10
11 #endif