]> git.karo-electronics.de Git - karo-tx-linux.git/commitdiff
powerpc/ps3: Replace virt_to_abs() with __pa()
authorMichael Ellerman <michael@ellerman.id.au>
Wed, 25 Jul 2012 21:19:59 +0000 (21:19 +0000)
committerBenjamin Herrenschmidt <benh@kernel.crashing.org>
Wed, 5 Sep 2012 05:19:31 +0000 (15:19 +1000)
virt_to_abs() is just a wrapper around __pa(), call __pa() directly.

Signed-off-by: Michael Ellerman <michael@ellerman.id.au>
Signed-off-by: Benjamin Herrenschmidt <benh@kernel.crashing.org>
drivers/video/ps3fb.c

index 213fbbcf613bdf0467eb97eec7c2c3e5649eb52d..4e292f29bf5dedb710085d291105c75f604e3e74 100644 (file)
@@ -31,7 +31,6 @@
 #include <linux/fb.h>
 #include <linux/init.h>
 
-#include <asm/abs_addr.h>
 #include <asm/cell-regs.h>
 #include <asm/lv1call.h>
 #include <asm/ps3av.h>
@@ -1141,7 +1140,7 @@ static int __devinit ps3fb_probe(struct ps3_system_bus_device *dev)
         */
        fb_start = ps3fb_videomemory.address + GPU_FB_START;
        info->screen_base = (char __force __iomem *)fb_start;
-       info->fix.smem_start = virt_to_abs(fb_start);
+       info->fix.smem_start = __pa(fb_start);
        info->fix.smem_len = ps3fb_videomemory.size - GPU_FB_START;
 
        info->pseudo_palette = par->pseudo_palette;