hc
2023-12-11 d2ccde1c8e90d38cee87a1b0309ad2827f3fd30d
kernel/drivers/mtd/maps/ck804xrom.c
....@@ -1,3 +1,4 @@
1
+// SPDX-License-Identifier: GPL-2.0-only
12 /*
23 * ck804xrom.c
34 *
....@@ -190,7 +191,7 @@
190191 /* FIXME handle registers 0x80 - 0x8C the bios region locks */
191192
192193 /* For write accesses caches are useless */
193
- window->virt = ioremap_nocache(window->phys, window->size);
194
+ window->virt = ioremap(window->phys, window->size);
194195 if (!window->virt) {
195196 printk(KERN_ERR MOD_NAME ": ioremap(%08lx, %08lx) failed\n",
196197 window->phys, window->size);