| .. | .. |
|---|
| 122 | 122 | if (unlikely(!addr)) |
|---|
| 123 | 123 | goto out; |
|---|
| 124 | 124 | err = -ENOMEM; |
|---|
| 125 | | - mmio = ioremap_nocache(addr, len); |
|---|
| 125 | + mmio = ioremap(addr, len); |
|---|
| 126 | 126 | if (!mmio) |
|---|
| 127 | 127 | goto out; |
|---|
| 128 | 128 | |
|---|
| .. | .. |
|---|
| 168 | 168 | if (unlikely(!addr)) |
|---|
| 169 | 169 | goto out; |
|---|
| 170 | 170 | err = -ENOMEM; |
|---|
| 171 | | - mmio = ioremap_nocache(addr, len); |
|---|
| 171 | + mmio = ioremap(addr, len); |
|---|
| 172 | 172 | if (!mmio) |
|---|
| 173 | 173 | goto out; |
|---|
| 174 | 174 | |
|---|
| .. | .. |
|---|
| 382 | 382 | /* Ok, ready to run, register it to the system. |
|---|
| 383 | 383 | * The following needs change, if we want to port hostmode |
|---|
| 384 | 384 | * to non-MIPS platform. */ |
|---|
| 385 | | - ssb_pcicore_controller.io_map_base = (unsigned long)ioremap_nocache(SSB_PCI_MEM, 0x04000000); |
|---|
| 385 | + ssb_pcicore_controller.io_map_base = (unsigned long)ioremap(SSB_PCI_MEM, 0x04000000); |
|---|
| 386 | 386 | set_io_port_base(ssb_pcicore_controller.io_map_base); |
|---|
| 387 | 387 | /* Give some time to the PCI controller to configure itself with the new |
|---|
| 388 | 388 | * values. Not waiting at this point causes crashes of the machine. */ |
|---|