hc
2024-05-13 9d77db3c730780c8ef5ccd4b66403ff5675cfe4e
kernel/drivers/mtd/devices/bcm47xxsflash.c
....@@ -1,3 +1,4 @@
1
+// SPDX-License-Identifier: GPL-2.0-only
12 #include <linux/kernel.h>
23 #include <linux/module.h>
34 #include <linux/slab.h>
....@@ -319,7 +320,7 @@
319320 * ChipCommon revision.
320321 */
321322 if (b47s->bcma_cc->core->id.rev == 54)
322
- b47s->window = ioremap_nocache(res->start, resource_size(res));
323
+ b47s->window = ioremap(res->start, resource_size(res));
323324 else
324325 b47s->window = ioremap_cache(res->start, resource_size(res));
325326 if (!b47s->window) {