kernel/drivers/mtd/devices/bcm47xxsflash.c
.. .. @@ -1,3 +1,4 @@ 1 +// SPDX-License-Identifier: GPL-2.0-only1 2 #include <linux/kernel.h> 2 3 #include <linux/module.h> 3 4 #include <linux/slab.h> .. .. @@ -319,7 +320,7 @@ 319 320 * ChipCommon revision. 320 321 */ 321 322 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));323 324 else 324 325 b47s->window = ioremap_cache(res->start, resource_size(res)); 325 326 if (!b47s->window) {