Commit f836e35a authored by Yinghai Lu's avatar Yinghai Lu Committed by H. Peter Anvin

x86, mm: change low/hignmem_pfn_init to static on 32bit

Signed-off-by: default avatarYinghai Lu <yinghai@kernel.org>
Link: http://lkml.kernel.org/r/1353123563-3103-33-git-send-email-yinghai@kernel.orgSigned-off-by: default avatarH. Peter Anvin <hpa@linux.intel.com>
parent 148b2098
...@@ -575,7 +575,7 @@ early_param("highmem", parse_highmem); ...@@ -575,7 +575,7 @@ early_param("highmem", parse_highmem);
* artificially via the highmem=x boot parameter then create * artificially via the highmem=x boot parameter then create
* it: * it:
*/ */
void __init lowmem_pfn_init(void) static void __init lowmem_pfn_init(void)
{ {
/* max_low_pfn is 0, we already have early_res support */ /* max_low_pfn is 0, we already have early_res support */
max_low_pfn = max_pfn; max_low_pfn = max_pfn;
...@@ -611,7 +611,7 @@ void __init lowmem_pfn_init(void) ...@@ -611,7 +611,7 @@ void __init lowmem_pfn_init(void)
* We have more RAM than fits into lowmem - we try to put it into * We have more RAM than fits into lowmem - we try to put it into
* highmem, also taking the highmem=x boot parameter into account: * highmem, also taking the highmem=x boot parameter into account:
*/ */
void __init highmem_pfn_init(void) static void __init highmem_pfn_init(void)
{ {
max_low_pfn = MAXMEM_PFN; max_low_pfn = MAXMEM_PFN;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment