Ver Fonte

Blackfin: fix indentation with bfin_read() helper

Use tabs instead of spaces to indent.

Signed-off-by: Mike Frysinger <vapier@gentoo.org>
Mike Frysinger há 14 anos atrás
pai
commit
d763c58a88
1 ficheiros alterados com 4 adições e 4 exclusões
  1. 4 4
      arch/blackfin/include/asm/def_LPBlackfin.h

+ 4 - 4
arch/blackfin/include/asm/def_LPBlackfin.h

@@ -52,10 +52,10 @@
 
 #define bfin_read(addr) \
 ({ \
-    sizeof(*(addr)) == 1 ? bfin_read8(addr)  : \
-    sizeof(*(addr)) == 2 ? bfin_read16(addr) : \
-    sizeof(*(addr)) == 4 ? bfin_read32(addr) : \
-    ({ BUG(); 0; }); \
+	sizeof(*(addr)) == 1 ? bfin_read8(addr)  : \
+	sizeof(*(addr)) == 2 ? bfin_read16(addr) : \
+	sizeof(*(addr)) == 4 ? bfin_read32(addr) : \
+	({ BUG(); 0; }); \
 })
 #define bfin_write(addr, val) \
 do { \