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