Merge tag 'drm-misc-next-2021-10-14' of git://anongit.freedesktop.org/drm/drm-misc...
[linux-2.6-microblaze.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