]> git.kernelconcepts.de Git - karo-tx-uboot.git/commitdiff
MIPS: fix missing semicolon in cacheops.h
authorTony Wu <tung7970@gmail.com>
Sat, 30 May 2015 07:02:39 +0000 (15:02 +0800)
committerLothar Waßmann <LW@KARO-electronics.de>
Tue, 8 Sep 2015 22:47:35 +0000 (00:47 +0200)
Fix missing semicolon in cacheops.h introduced in commit
2b8bcc5a2 (MIPS: avoid .set ISA for cache operations)

Signed-off-by: Tony Wu <tung7970@gmail.com>
Cc: Paul Burton <paul.burton@imgtec.com>
arch/mips/include/asm/cacheops.h

index 75ec380980f7653b1505d1316eae20329704cbb3..af2adc701edb3ac8e2db1efe14f6b818d30096c8 100644 (file)
@@ -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
 }