Re: [PATCH 25/90] ARM: OMAP: h4 must have blinky leds!!

From: Jan Engelhardt
Date: Wed Apr 04 2007 - 16:08:41 EST



On Apr 4 2007 12:00, Randy Dunlap wrote:
>
>> +static int __init fpga_init(void)
>> +{
>> + if (machine_is_omap_h4()
>> + || machine_is_omap_h3()
>> + || machine_is_omap_h2()
>> + || machine_is_omap_perseus2()
>> + )
>
>Perhaps there is nothing in CodingStyle for if () continuation
>lines. Looks like it is needed. This is ETOOMUCHINDENTATION by
>at least one tab. Should be more like:
>
>+ if (machine_is_omap_h4()
>+ || machine_is_omap_h3()
>+ || machine_is_omap_h2()
>+ || machine_is_omap_perseus2())

My stance, || goes at EOL, and final ) not standalone:

if (foo ||
bar ||
baz ||
etc)
do_something;



Jan
--
-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/