]> git.openfabrics.org - ~emulex/infiniband.git/commitdiff
sh: Convert p3_ioremap() users to ioremap_prot().
authorPaul Mundt <lethal@linux-sh.org>
Tue, 19 Jan 2010 04:55:41 +0000 (13:55 +0900)
committerPaul Mundt <lethal@linux-sh.org>
Tue, 19 Jan 2010 04:55:41 +0000 (13:55 +0900)
This kills off the ancient p3_ioremap(), converting over to the more
generic ioremap_prot() instead.

Signed-off-by: Paul Mundt <lethal@linux-sh.org>
arch/sh/boards/mach-landisk/setup.c
arch/sh/boards/mach-lboxre2/setup.c
arch/sh/boards/mach-sh03/setup.c
arch/sh/include/asm/io.h

index 59816355d19902615b828561fa9dd903081ea0e0..2d09d4d34f8780bd2674baf9a5b18c7c1dc771a7 100644 (file)
@@ -63,7 +63,7 @@ static int __init landisk_devices_setup(void)
        /* open I/O area window */
        paddrbase = virt_to_phys((void *)PA_AREA5_IO);
        prot = PAGE_KERNEL_PCC(1, _PAGE_PCC_IO16);
-       cf_ide_base = p3_ioremap(paddrbase, PAGE_SIZE, prot);
+       cf_ide_base = ioremap_prot(paddrbase, PAGE_SIZE, pgprot_val(prot));
        if (!cf_ide_base) {
                printk("allocate_cf_area : can't open CF I/O window!\n");
                return -ENOMEM;
index 408dd5df7d45e2adab35b5a6a4ebd4c5b8e4d22f..79b4e0d77b716e6141b8f05076aa7713c8602e86 100644 (file)
@@ -56,8 +56,8 @@ static int __init lboxre2_devices_setup(void)
        /* open I/O area window */
        paddrbase = virt_to_phys((void*)PA_AREA5_IO);
        psize = PAGE_SIZE;
-       prot = PAGE_KERNEL_PCC( 1 , _PAGE_PCC_IO16);
-       cf0_io_base = (u32)p3_ioremap(paddrbase, psize, prot);
+       prot = PAGE_KERNEL_PCC(1, _PAGE_PCC_IO16);
+       cf0_io_base = (u32)ioremap_prot(paddrbase, psize, pgprot_val(prot));
        if (!cf0_io_base) {
                printk(KERN_ERR "%s : can't open CF I/O window!\n" , __func__ );
                return -ENOMEM;
index f14ba0fa950ba42a26d6bbb575c8b86b311b79b3..af4a0c012a9648e6d01954a8c3cb1069081d4cc5 100644 (file)
@@ -82,7 +82,7 @@ static int __init sh03_devices_setup(void)
        /* open I/O area window */
        paddrbase = virt_to_phys((void *)PA_AREA5_IO);
        prot = PAGE_KERNEL_PCC(1, _PAGE_PCC_IO16);
-       cf_ide_base = p3_ioremap(paddrbase, PAGE_SIZE, prot);
+       cf_ide_base = ioremap_prot(paddrbase, PAGE_SIZE, pgprot_val(prot));
        if (!cf_ide_base) {
                printk("allocate_cf_area : can't open CF I/O window!\n");
                return -ENOMEM;
index 70269813cef1732a5070b94c75137138498c6d36..c32a55601d01c4d984db9a2748654e56a044478f 100644 (file)
@@ -328,7 +328,6 @@ ioremap_prot(resource_size_t offset, unsigned long size, unsigned long flags)
 }
 
 #define ioremap_nocache        ioremap
-#define p3_ioremap     __ioremap
 #define iounmap                __iounmap
 
 #define maybebadio(port) \