aboutsummaryrefslogtreecommitdiffstats
path: root/arch/sh/drivers
diff options
context:
space:
mode:
Diffstat (limited to 'arch/sh/drivers')
-rw-r--r--arch/sh/drivers/pci/pci-sh5.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/sh/drivers/pci/pci-sh5.c b/arch/sh/drivers/pci/pci-sh5.c
index cf431852213c..873ed2b44055 100644
--- a/arch/sh/drivers/pci/pci-sh5.c
+++ b/arch/sh/drivers/pci/pci-sh5.c
@@ -119,12 +119,12 @@ static int __init sh5pci_init(void)
119 return -EINVAL; 119 return -EINVAL;
120 } 120 }
121 121
122 pcicr_virt = onchip_remap(SH5PCI_ICR_BASE, 1024, "PCICR"); 122 pcicr_virt = (unsigned long)ioremap_nocache(SH5PCI_ICR_BASE, 1024);
123 if (!pcicr_virt) { 123 if (!pcicr_virt) {
124 panic("Unable to remap PCICR\n"); 124 panic("Unable to remap PCICR\n");
125 } 125 }
126 126
127 PCI_IO_AREA = onchip_remap(SH5PCI_IO_BASE, 0x10000, "PCIIO"); 127 PCI_IO_AREA = (unsigned long)ioremap_nocache(SH5PCI_IO_BASE, 0x10000);
128 if (!PCI_IO_AREA) { 128 if (!PCI_IO_AREA) {
129 panic("Unable to remap PCIIO\n"); 129 panic("Unable to remap PCIIO\n");
130 } 130 }