hc
2024-05-13 9d77db3c730780c8ef5ccd4b66403ff5675cfe4e
kernel/drivers/mtd/maps/amd76xrom.c
....@@ -1,3 +1,4 @@
1
+// SPDX-License-Identifier: GPL-2.0-only
12 /*
23 * amd76xrom.c
34 *
....@@ -162,7 +163,7 @@
162163 /* FIXME handle registers 0x80 - 0x8C the bios region locks */
163164
164165 /* For write accesses caches are useless */
165
- window->virt = ioremap_nocache(window->phys, window->size);
166
+ window->virt = ioremap(window->phys, window->size);
166167 if (!window->virt) {
167168 printk(KERN_ERR MOD_NAME ": ioremap(%08lx, %08lx) failed\n",
168169 window->phys, window->size);