projects
/
platform
/
kernel
/
u-boot.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
1054344
)
armv7m: cache: add mmu_set_region_dcache_behaviour() stub for compatibility
author
Giulio Benetti
<giulio.benetti@benettiengineering.com>
Fri, 10 Jan 2020 14:46:52 +0000
(15:46 +0100)
committer
Stefano Babic
<sbabic@denx.de>
Tue, 14 Jan 2020 21:53:59 +0000
(22:53 +0100)
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
patch
|
blob
|
history
diff --git
a/arch/arm/cpu/armv7m/cache.c
b/arch/arm/cpu/armv7m/cache.c
index
f4ba3ad
..
7353698
100644
(file)
--- a/
arch/arm/cpu/armv7m/cache.c
+++ b/
arch/arm/cpu/armv7m/cache.c
@@
-291,6
+291,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)