]> git.karo-electronics.de Git - karo-tx-linux.git/blobdiff - Documentation/CodingStyle
ARM: dts: imx6ul: add support for Ka-Ro electronics TXUL mainboard
[karo-tx-linux.git] / Documentation / CodingStyle
index db653774c0b74fe5f3a98598b5b68d6c10a20e34..9a70ddd16584bd92b1f834286adf6706ced4f0dc 100644 (file)
@@ -640,7 +640,7 @@ Things to avoid when using macros:
                do {                                    \
                        if (blah(x) < 0)                \
                                return -EBUGGERED;      \
-               } while(0)
+               } while (0)
 
 is a _very_ bad idea.  It looks like a function call but exits the "calling"
 function; don't break the internal parsers of those who will read the code.