You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
380 B
12 lines
380 B
// SPDX-License-Identifier: GPL-2.0
|
|
/*
|
|
* Architecture-specific kernel symbols
|
|
*/
|
|
|
|
#ifdef CONFIG_VIRTUAL_MEM_MAP
|
|
#include <linux/compiler.h>
|
|
#include <linux/export.h>
|
|
#include <linux/bootmem.h>
|
|
EXPORT_SYMBOL(min_low_pfn); /* defined by bootmem.c, but not exported by generic code */
|
|
EXPORT_SYMBOL(max_low_pfn); /* defined by bootmem.c, but not exported by generic code */
|
|
#endif
|
|
|