[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-Id: <20140701.221423.427836851370173361.davem@davemloft.net>
Date: Tue, 01 Jul 2014 22:14:23 -0700 (PDT)
From: David Miller <davem@...emloft.net>
To: joe@...ches.com
Cc: f.fainelli@...il.com, varkabhadram@...il.com,
netdev@...r.kernel.org, varkab@...c.in,
linux-zigbee-devel@...ts.sourceforge.net
Subject: Re: [Linux-zigbee-devel] [PATCH net-next v3] 6lowpan: mac802154:
fix coding style issues
From: Joe Perches <joe@...ches.com>
Date: Tue, 01 Jul 2014 21:58:10 -0700
> The code is currently:
>
> __raw_writel(upper_32_bits(addr) & DESC_ADDR_HI_MASK,
> d + DESC_ADDR_HI_STATUS_LEN);
>
> 1st line has 1 leading tab,
> 2nd line has 3 leading tabs
>
> For networking code style, this should be:
>
> __raw_writel(upper_32_bits(addr) & DESC_ADDR_HI_MASK,
> d + DESC_ADDR_HI_STATUS_LEN);
>
> 1st line has 1 leading tab,
> 2nd line has 2 leading tabs followed by 5 leading spaces
>
> This aligns the 2nd line arguments to the position immediately
> after the open parenthesis.
+1
--
To unsubscribe from this list: send the line "unsubscribe netdev" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Powered by blists - more mailing lists