diff options
author | Tom Rini <trini@konsulko.com> | 2015-07-08 17:14:02 -0400 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2015-07-08 17:14:02 -0400 |
commit | fb69b6cd270444c8d248e70e6be7c58f9828debd (patch) | |
tree | 487b0edd5d3fbf3bf324f58132c397cc2c81cc76 /arch/mips/include/asm/cacheops.h | |
parent | f3edfd30541d6f245d7dfa6fa7354cc916cc53e1 (diff) | |
parent | b11c5d1dc29e81326d1215011d19377737082aeb (diff) |
Merge branch 'master' of git://git.denx.de/u-boot-mips
Diffstat (limited to 'arch/mips/include/asm/cacheops.h')
-rw-r--r-- | arch/mips/include/asm/cacheops.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/mips/include/asm/cacheops.h b/arch/mips/include/asm/cacheops.h index 75ec380980f..af2adc701ed 100644 --- a/arch/mips/include/asm/cacheops.h +++ b/arch/mips/include/asm/cacheops.h @@ -18,7 +18,7 @@ static inline void mips_cache(int op, const volatile void *addr) #ifdef __GCC_HAVE_BUILTIN_MIPS_CACHE __builtin_mips_cache(op, addr); #else - __asm__ __volatile__("cache %0, %1" : : "i"(op), "R"(addr)) + __asm__ __volatile__("cache %0, %1" : : "i"(op), "R"(addr)); #endif } |