]> git.dujemihanovic.xyz Git - u-boot.git/commitdiff
powerpc: Add the old invalidate_icache_all function
authorTom Rini <trini@konsulko.com>
Wed, 19 Jun 2024 21:27:58 +0000 (15:27 -0600)
committerTom Rini <trini@konsulko.com>
Wed, 3 Jul 2024 20:42:01 +0000 (14:42 -0600)
Add the old invalidate_icache_all function that prints a warning that
was previously found in cmd/cache.c

Signed-off-by: Tom Rini <trini@konsulko.com>
arch/powerpc/lib/cache.c

index 130318d745aa7a567d7d84f89ee35ed568c45e3a..a9cd7b8d30acb2886367d7b2bf546f809900c62f 100644 (file)
@@ -5,6 +5,7 @@
  */
 
 #include <cpu_func.h>
+#include <stdio.h>
 #include <asm/cache.h>
 #include <watchdog.h>
 
@@ -52,3 +53,8 @@ void flush_dcache_all(void)
 {
        flush_dcache_range(0, ~0);
 }
+
+void invalidate_icache_all(void)
+{
+       puts("No arch specific invalidate_icache_all available!\n");
+}