]> www.pilppa.org Git - linux-2.6-omap-h63xx.git/commit
x86: use early_ioremap in __acpi_map_table
authorJeremy Fitzhardinge <jeremy@goop.org>
Sat, 7 Feb 2009 23:39:38 +0000 (15:39 -0800)
committerIngo Molnar <mingo@elte.hu>
Mon, 9 Feb 2009 12:33:51 +0000 (13:33 +0100)
commit1c14fa4937eb73509e07ac12bf8db1fdf4c42a59
treed137f1587078f2909a2df48a5206ca1e9751f47f
parentd5b562330ec766292a3ac54ae5e0673610bd5b3d
x86: use early_ioremap in __acpi_map_table

__acpi_map_table() effectively reimplements early_ioremap().  Rather
than have that duplication, just implement it in terms of
early_ioremap().

However, unlike early_ioremap(), __acpi_map_table() just maintains a
single mapping which gets replaced each call, and has no corresponding
unmap function.  Implement this by just removing the previous mapping
each time its called.  Unfortunately, this will leave a stray mapping
at the end.

Signed-off-by: Jeremy Fitzhardinge <jeremy.fitzhardinge@citrix.com>
Signed-off-by: Ingo Molnar <mingo@elte.hu>
arch/x86/include/asm/acpi.h
arch/x86/include/asm/fixmap_32.h
arch/x86/include/asm/fixmap_64.h
arch/x86/kernel/acpi/boot.c