2005-04-17 06:20:36 +08:00
|
|
|
/*
|
|
|
|
* Architecture-specific kernel symbols
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifdef CONFIG_VIRTUAL_MEM_MAP
|
2016-01-17 14:13:41 +08:00
|
|
|
#include <linux/compiler.h>
|
|
|
|
#include <linux/export.h>
|
2005-04-17 06:20:36 +08:00
|
|
|
#include <linux/bootmem.h>
|
2005-11-10 04:25:06 +08:00
|
|
|
EXPORT_SYMBOL(min_low_pfn); /* defined by bootmem.c, but not exported by generic code */
|
2005-04-17 06:20:36 +08:00
|
|
|
EXPORT_SYMBOL(max_low_pfn); /* defined by bootmem.c, but not exported by generic code */
|
|
|
|
#endif
|