diff options
author | Mark Salter <msalter@redhat.com> | 2014-04-07 15:39:49 -0700 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2014-04-07 16:36:15 -0700 |
commit | 5b7c73e00968c7fdf908c3ced31e1cc83c01ba14 (patch) | |
tree | 5d733047855bc22d40e022ea27a11ba7b52b03e4 /arch/x86/mm/pgtable_32.c | |
parent | 9e5c33d7aeeef62e5fa7e74f94432685bd03026b (diff) | |
download | linux-5b7c73e00968c7fdf908c3ced31e1cc83c01ba14.tar.gz linux-5b7c73e00968c7fdf908c3ced31e1cc83c01ba14.tar.bz2 linux-5b7c73e00968c7fdf908c3ced31e1cc83c01ba14.zip |
x86: use generic early_ioremap
Move x86 over to the generic early ioremap implementation.
Signed-off-by: Mark Salter <msalter@redhat.com>
Acked-by: H. Peter Anvin <hpa@zytor.com>
Cc: Borislav Petkov <borislav.petkov@amd.com>
Cc: Catalin Marinas <catalin.marinas@arm.com>
Cc: Dave Young <dyoung@redhat.com>
Cc: Will Deacon <will.deacon@arm.com>
Cc: Ingo Molnar <mingo@elte.hu>
Cc: Thomas Gleixner <tglx@linutronix.de>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'arch/x86/mm/pgtable_32.c')
-rw-r--r-- | arch/x86/mm/pgtable_32.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/x86/mm/pgtable_32.c b/arch/x86/mm/pgtable_32.c index a69bcb8c7621..4dd8cf652579 100644 --- a/arch/x86/mm/pgtable_32.c +++ b/arch/x86/mm/pgtable_32.c @@ -127,7 +127,7 @@ static int __init parse_reservetop(char *arg) address = memparse(arg, &arg); reserve_top_address(address); - fixup_early_ioremap(); + early_ioremap_init(); return 0; } early_param("reservetop", parse_reservetop); |