diff options
author | Michael Ellerman <michael@ellerman.id.au> | 2012-07-25 21:19:58 +0000 |
---|---|---|
committer | Benjamin Herrenschmidt <benh@kernel.crashing.org> | 2012-09-05 15:19:31 +1000 |
commit | d88dc13a2463cac2a909d6b8570b7d47f88f1b6e (patch) | |
tree | d6e961d47b33d8d97b9a9612e3830ed5aaf86f40 /arch/powerpc/mm | |
parent | 474e3d569b63f7275cfec072d7ef7b2ffb8904c8 (diff) | |
download | op-kernel-dev-d88dc13a2463cac2a909d6b8570b7d47f88f1b6e.zip op-kernel-dev-d88dc13a2463cac2a909d6b8570b7d47f88f1b6e.tar.gz |
powerpc/mm: Remove uses of abs_to_virt() and virt_to_abs()
These days they are just __va() and __pa() respectively.
Signed-off-by: Michael Ellerman <michael@ellerman.id.au>
Signed-off-by: Benjamin Herrenschmidt <benh@kernel.crashing.org>
Diffstat (limited to 'arch/powerpc/mm')
-rw-r--r-- | arch/powerpc/mm/stab.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/arch/powerpc/mm/stab.c b/arch/powerpc/mm/stab.c index 9106ebb..3f8efa6 100644 --- a/arch/powerpc/mm/stab.c +++ b/arch/powerpc/mm/stab.c @@ -20,7 +20,6 @@ #include <asm/paca.h> #include <asm/cputable.h> #include <asm/prom.h> -#include <asm/abs_addr.h> struct stab_entry { unsigned long esid_data; @@ -257,7 +256,7 @@ void __init stabs_alloc(void) memset((void *)newstab, 0, HW_PAGE_SIZE); paca[cpu].stab_addr = newstab; - paca[cpu].stab_real = virt_to_abs(newstab); + paca[cpu].stab_real = __pa(newstab); printk(KERN_INFO "Segment table for CPU %d at 0x%llx " "virtual, 0x%llx absolute\n", cpu, paca[cpu].stab_addr, paca[cpu].stab_real); |