Skip to content
Snippets Groups Projects
Commit ec6f6100 authored by Daniel Allred's avatar Daniel Allred Committed by Tom Rini
Browse files

arm: cache: add missing dummy functions for when dcache disabled


Adds missing flush_dcache_range and invalidate_dcache_range dummy
(empty) placeholder functions to the #else portion of the #ifndef
CONFIG_SYS_DCACHE_OFF, where full implementations of these functions
are defined.

Signed-off-by: default avatarDaniel Allred <d-allred@ti.com>
Signed-off-by: default avatarAndreas Dannenberg <dannenberg@ti.com>
Reviewed-by: default avatarSimon Glass <sjg@chromium.org>
Reviewed-by: default avatarTom Rini <trini@konsulko.com>
parent 6b6024ea
No related branches found
No related tags found
No related merge requests found
......@@ -195,6 +195,14 @@ void flush_dcache_all(void)
{
}
void invalidate_dcache_range(unsigned long start, unsigned long stop)
{
}
void flush_dcache_range(unsigned long start, unsigned long stop)
{
}
void arm_init_before_mmu(void)
{
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment