[<prev] [next>] [day] [month] [year] [list]
Message-ID: <20080504185913.GA13605@kernelpanic>
Date: Mon, 5 May 2008 00:29:13 +0530
From: Pradeep Singh Rautela <rautelap@...il.com>
To: linux-kernel@...r.kernel.org
Cc: rautelap@...il.com, akpm@...ux-foundation.org,
linux-netdev@...r.kernel.org
Subject: [PATCH] fc: Fix fc.c to adhere to kernel Coding style
net: fc.c does not strictly adheres to kernel coding style.
Fix it by changing some occurences of
if
{
...;
}
else
{
...;
}
to
if {
...;
} else {
...;
}
Signed-off-by: Pradeep Singh <rautelap@...il.com>
---
net/802/fc.c | 10 +++-------
1 files changed, 3 insertions(+), 7 deletions(-)
diff --git a/net/802/fc.c b/net/802/fc.c
index cb3475e..7062605 100644
--- a/net/802/fc.c
+++ b/net/802/fc.c
@@ -44,8 +44,7 @@ static int fc_header(struct sk_buff *skb, struct net_device *dev,
* Add the 802.2 SNAP header if IP as the IPv4 code calls
* dev->hard_header directly.
*/
- if (type == ETH_P_IP || type == ETH_P_ARP)
- {
+ if (type == ETH_P_IP || type == ETH_P_ARP) {
struct fcllc *fcllc;
hdr_len = sizeof(struct fch_hdr) + sizeof(struct fcllc);
@@ -55,9 +54,7 @@ static int fc_header(struct sk_buff *skb, struct net_device *dev,
fcllc->llc = UI_CMD;
fcllc->protid[0] = fcllc->protid[1] = fcllc->protid[2] = 0x00;
fcllc->ethertype = htons(type);
- }
- else
- {
+ } else {
hdr_len = sizeof(struct fch_hdr);
fch = (struct fch_hdr *)skb_push(skb, hdr_len);
}
@@ -67,8 +64,7 @@ static int fc_header(struct sk_buff *skb, struct net_device *dev,
else
memcpy(fch->saddr,dev->dev_addr,dev->addr_len);
- if(daddr)
- {
+ if (daddr) {
memcpy(fch->daddr,daddr,dev->addr_len);
return(hdr_len);
}
--
1.5.5.1
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists