diff options
Diffstat (limited to 'Documentation/CodingStyle')
-rw-r--r-- | Documentation/CodingStyle | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/Documentation/CodingStyle b/Documentation/CodingStyle index 9069189e78ef..e7f5fc6ef20b 100644 --- a/Documentation/CodingStyle +++ b/Documentation/CodingStyle | |||
@@ -160,6 +160,21 @@ supply of new-lines on your screen is not a renewable resource (think | |||
160 | 25-line terminal screens here), you have more empty lines to put | 160 | 25-line terminal screens here), you have more empty lines to put |
161 | comments on. | 161 | comments on. |
162 | 162 | ||
163 | Do not unnecessarily use braces where a single statement will do. | ||
164 | |||
165 | if (condition) | ||
166 | action(); | ||
167 | |||
168 | This does not apply if one branch of a conditional statement is a single | ||
169 | statement. Use braces in both branches. | ||
170 | |||
171 | if (condition) { | ||
172 | do_this(); | ||
173 | do_that(); | ||
174 | } else { | ||
175 | otherwise(); | ||
176 | } | ||
177 | |||
163 | 3.1: Spaces | 178 | 3.1: Spaces |
164 | 179 | ||
165 | Linux kernel style for use of spaces depends (mostly) on | 180 | Linux kernel style for use of spaces depends (mostly) on |