* [PATCH] fc: Fix fc.c to adhere to kernel Coding style
@ 2008-05-04 18:59 Pradeep Singh Rautela
0 siblings, 0 replies; only message in thread
From: Pradeep Singh Rautela @ 2008-05-04 18:59 UTC (permalink / raw)
To: linux-kernel; +Cc: rautelap, akpm, linux-netdev
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@gmail.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
^ permalink raw reply related [flat|nested] only message in thread
only message in thread, other threads:[~2008-05-04 18:59 UTC | newest]
Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2008-05-04 18:59 [PATCH] fc: Fix fc.c to adhere to kernel Coding style Pradeep Singh Rautela
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox