powerpc: lib: remove leftover CONFIG_5xx

CONFIG_5xx hasn't existed since commit 5025897774 (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>
This commit is contained in:
Rasmus Villemoes 2021-04-21 11:16:02 +02:00 committed by Stefan Roese
parent 17bd5cce7e
commit b18352f2ba

View 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
}