projects
/
u-boot.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
2eed3dc
)
mips: cache: Make flush_cache() weak to enable overwrite
author
Stefan Roese
<sr@denx.de>
Thu, 14 May 2020 09:59:04 +0000
(11:59 +0200)
committer
Daniel Schwierzeck
<daniel.schwierzeck@gmail.com>
Sat, 18 Jul 2020 12:23:25 +0000
(14:23 +0200)
This patch adds __weak to flush_cache() in lib/cache.c. This makes it
possible to overwrite this function by a platforms specific version,
like done with the Octeon base port.
Signed-off-by: Stefan Roese <sr@denx.de>
arch/mips/lib/cache.c
patch
|
blob
|
history
diff --git
a/arch/mips/lib/cache.c
b/arch/mips/lib/cache.c
index
b5c42ae
..
ad37f05
100644
(file)
--- a/
arch/mips/lib/cache.c
+++ b/
arch/mips/lib/cache.c
@@
-107,7
+107,7
@@
static inline unsigned long scache_line_size(void)
} \
} while (0)
-void flush_cache(ulong start_addr, ulong size)
+void
__weak
flush_cache(ulong start_addr, ulong size)
{
unsigned long ilsize = icache_line_size();
unsigned long dlsize = dcache_line_size();