Merge tag 'powerpc-6.6-6' of git://git.kernel.org/pub/scm/linux/kernel/git/powerpc...
[platform/kernel/linux-starfive.git] / tools / testing / memblock / internal.h
1 /* SPDX-License-Identifier: GPL-2.0-or-later */
2 #ifndef _MM_INTERNAL_H
3 #define _MM_INTERNAL_H
4
5 /*
6  * Enable memblock_dbg() messages
7  */
8 #ifdef MEMBLOCK_DEBUG
9 static int memblock_debug = 1;
10 #endif
11
12 #define pr_warn_ratelimited(fmt, ...)    printf(fmt, ##__VA_ARGS__)
13
14 bool mirrored_kernelcore = false;
15
16 struct page {};
17
18 void memblock_free_pages(struct page *page, unsigned long pfn,
19                          unsigned int order)
20 {
21 }
22
23 static inline void accept_memory(phys_addr_t start, phys_addr_t end)
24 {
25 }
26
27 #endif