commit | b77a480be543c876b4942e49c9377b6451d94f74 | [log] [tgz] |
---|---|---|
author | Tom Rini <trini@konsulko.com> | Fri Apr 22 07:25:18 2016 -0400 |
committer | Tom Rini <trini@konsulko.com> | Fri Apr 22 07:25:18 2016 -0400 |
tree | c6c2f428d344c1292505796e5988f24be427bcc8 | |
parent | 5f5416975a9daca3bd8e428bd4c7e410d620f423 [diff] | |
parent | 529b761b708553eaf3607c1eb4e0e668b1a0e54c [diff] |
Merge branch 'master' of git://git.denx.de/u-boot-x86
diff --git a/arch/arc/lib/cache.c b/arch/arc/lib/cache.c index 56988dd..d1fb661 100644 --- a/arch/arc/lib/cache.c +++ b/arch/arc/lib/cache.c
@@ -430,13 +430,10 @@ void flush_dcache_all(void) { -#ifdef CONFIG_ISA_ARCV2 - if (!ioc_exists) -#endif - __dc_entire_op(OP_FLUSH); + __dc_entire_op(OP_FLUSH); #ifdef CONFIG_ISA_ARCV2 - if (slc_exists && !ioc_exists) + if (slc_exists) __slc_entire_op(OP_FLUSH); #endif }