
20 Nov
2019
20 Nov
'19
6:56 p.m.
Since some driver requires this function add it as an empty stub when DCACHE is OFF.
Signed-off-by: Giulio Benetti giulio.benetti@benettiengineering.com --- arch/arm/cpu/armv7m/cache.c | 6 ++++++ 1 file changed, 6 insertions(+)
diff --git a/arch/arm/cpu/armv7m/cache.c b/arch/arm/cpu/armv7m/cache.c index 1106bead41..0ccd7519a1 100644 --- a/arch/arm/cpu/armv7m/cache.c +++ b/arch/arm/cpu/armv7m/cache.c @@ -290,6 +290,12 @@ void flush_dcache_all(void) void invalidate_dcache_all(void) { } + +void mmu_set_region_dcache_behaviour(phys_addr_t start, size_t size, + enum dcache_option option) +{ +} + #endif
#if !CONFIG_IS_ENABLED(SYS_ICACHE_OFF)
--
2.20.1