lkml.org 
[lkml]   [2016]   [Dec]   [13]   [last100]   RSS Feed
Views: [wrap][no wrap]   [headers]  [forward] 
 
Messages in this thread
/
SubjectRe: [PATCH V8 3/3] irqchip: qcom: Add IRQ combiner driver
From
Date
On Tue, 2016-12-13 at 10:23 -0500, Agustin Vega-Frias wrote:
> On 2016-12-07 13:16, Marc Zyngier wrote:
> > > + }
> > > +
> > > + combiner->domain = irq_domain_create_linear(
> > > + pdev->dev.fwnode, combiner->nirqs, &domain_ops, combiner);
> >
> > On a single line, please. Do no listen to the checkpatch police that
> > will tell you otherwise. It really hurt my eyes to see this opening
> > bracket and *nothing* after that.
>
> Will do.

It seems generally preferred to have at least one argument on the
same line as the function being called.

So, here are some options:

Maximally fill the lines to 80 columns with the value being set
and function call while aligning to open parenthesis

combiner->domain = irq_domain_create_linear(pdev->dev.fwnode,
combiner->nirqs,
&domain_ops, combiner);

Use a separate line for the function call:

combiner->domain =
irq_domain_create_linear(pdev->dev.fwnode, combiner->nirqs,
&domain_ops, combiner);

Or just ignore the 80 column limit wherever you deem appropriate.

No single style is universal, use what you think best.

Anyway, long identifiers (24 chars here) make staying within the
"strongly preferred" 80 column limit produce quite silly looking
code.

\
 
 \ /
  Last update: 2016-12-13 19:22    [W:0.059 / U:0.124 seconds]
©2003-2020 Jasper Spaans|hosted at Digital Ocean and TransIP|Read the blog|Advertise on this site