aboutsummaryrefslogtreecommitdiff
path: root/arch/powerpc/lib
diff options
context:
space:
mode:
authorRasmus Villemoes <rasmus.villemoes@prevas.dk>2021-04-21 11:16:02 +0200
committerStefan Roese <sr@denx.de>2021-04-27 08:28:07 +0200
commitec4cc0edf9c73ce65eaf669ad1b6b445c42844a0 (patch)
treea29c4dc144849dbd73e19c46a701bdce43b6bf3b /arch/powerpc/lib
parent933ada560b678726835566fbff8a044fa9800175 (diff)
downloadu-boot-ec4cc0edf9c73ce65eaf669ad1b6b445c42844a0.zip
u-boot-ec4cc0edf9c73ce65eaf669ad1b6b445c42844a0.tar.gz
u-boot-ec4cc0edf9c73ce65eaf669ad1b6b445c42844a0.tar.bz2
powerpc: lib: remove leftover CONFIG_5xx
CONFIG_5xx hasn't existed since commit 502589777416 (powerpc, 5xx: remove support for 5xx). Remove this last mention of it. Reviewed-by: Stefan Roese <sr@denx.de> Signed-off-by: Rasmus Villemoes <rasmus.villemoes@prevas.dk>
Diffstat (limited to 'arch/powerpc/lib')
-rw-r--r--arch/powerpc/lib/cache.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/arch/powerpc/lib/cache.c b/arch/powerpc/lib/cache.c
index 3c3c470..3e487f5 100644
--- a/arch/powerpc/lib/cache.c
+++ b/arch/powerpc/lib/cache.c
@@ -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
}