]> Git Repo - u-boot.git/commitdiff
powerpc: lib: remove leftover CONFIG_5xx
authorRasmus Villemoes <[email protected]>
Wed, 21 Apr 2021 09:16:02 +0000 (11:16 +0200)
committerStefan Roese <[email protected]>
Tue, 27 Apr 2021 06:28:07 +0000 (08:28 +0200)
CONFIG_5xx hasn't existed since commit 502589777416 (powerpc, 5xx:
remove support for 5xx). Remove this last mention of it.

Reviewed-by: Stefan Roese <[email protected]>
Signed-off-by: Rasmus Villemoes <[email protected]>
arch/powerpc/lib/cache.c

index 3c3c470bbbda91c4403b1ddbb51d540feb2d8966..3e487f50fe3e19acdc837a76b05bb97fc74fecd9 100644 (file)
@@ -11,7 +11,6 @@
 
 void flush_cache(ulong start_addr, ulong size)
 {
-#ifndef CONFIG_5xx
        ulong addr, start, end;
 
        start = start_addr & ~(CONFIG_SYS_CACHELINE_SIZE - 1);
@@ -33,5 +32,4 @@ void flush_cache(ulong start_addr, ulong size)
        asm volatile("sync" : : : "memory");
        /* flush prefetch queue */
        asm volatile("isync" : : : "memory");
-#endif
 }
This page took 0.036681 seconds and 4 git commands to generate.