lkml.org 
[lkml]   [2013]   [Jul]   [23]   [last100]   RSS Feed
Views: [wrap][no wrap]   [headers]  [forward] 
 
Messages in this thread
/
Date
From
SubjectRe: [PATCH] Staging: bcm: Qos: Fix some coding style issues
On Tue, Jul 23, 2013 at 06:10:41PM +0800, Lilis Iskandar wrote:
> Hi Dan,
>
> I have already accepted my fate when I submitted the patch. Though it's
> really great that I receive a response so fast :)
>
> Regarding the braces, I thought it would be more readable that way
> because of the long code wrapping inside the "if" parameter.

The way to do that is to use spaces to align the stuff in the if
statement.

if (long_ blah blah blah blah blah blah ==
this part lines up with the 'l' in "long_")
frob();

Read CodingStyle. One other thing is that in staging we prefer if
multi-line indents have braces around them even if it's not needed.

Ugly:
for (i = 0; i < 100; i++)
if (x) {
frob();
frob();
frob();
}

Nice to look at:
for (i = 0; i < 100; i++) {
if (x) {
frob();
frob();
frob();
}
}

> I'll fix it and send the patches again in pieces. Should I send a
> new mail or reply to this thread?

This thread, but it doesn't matter.

regards,
dan carpenter




\
 
 \ /
  Last update: 2013-07-23 13:01    [W:0.060 / U:0.024 seconds]
©2003-2020 Jasper Spaans|hosted at Digital Ocean and TransIP|Read the blog|Advertise on this site