hc
2024-02-20 102a0743326a03cd1a1202ceda21e175b7d3575c
kernel/drivers/ssb/driver_pcicore.c
....@@ -122,7 +122,7 @@
122122 if (unlikely(!addr))
123123 goto out;
124124 err = -ENOMEM;
125
- mmio = ioremap_nocache(addr, len);
125
+ mmio = ioremap(addr, len);
126126 if (!mmio)
127127 goto out;
128128
....@@ -168,7 +168,7 @@
168168 if (unlikely(!addr))
169169 goto out;
170170 err = -ENOMEM;
171
- mmio = ioremap_nocache(addr, len);
171
+ mmio = ioremap(addr, len);
172172 if (!mmio)
173173 goto out;
174174
....@@ -382,7 +382,7 @@
382382 /* Ok, ready to run, register it to the system.
383383 * The following needs change, if we want to port hostmode
384384 * 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);
386386 set_io_port_base(ssb_pcicore_controller.io_map_base);
387387 /* Give some time to the PCI controller to configure itself with the new
388388 * values. Not waiting at this point causes crashes of the machine. */