diff options
author | Francois Romieu <romieu@fr.zoreil.com> | 2006-12-05 16:38:00 -0500 |
---|---|---|
committer | Jeff Garzik <jeff@garzik.org> | 2007-02-05 16:58:43 -0500 |
commit | c697f83e8c880a1e69fb2a45a6e4aa0670e10602 (patch) | |
tree | 27cd53ac86ccd5f1ae644d7cf074a05740b8db2b /drivers/net/chelsio/vsc8244.c | |
parent | ea8862dc86c0f5a0be012a0f2e9de1b2ccabbaa5 (diff) |
chelsio: move return, break and continue statements on their own line
Signed-off-by: Francois Romieu <romieu@fr.zoreil.com>
Diffstat (limited to 'drivers/net/chelsio/vsc8244.c')
-rw-r--r-- | drivers/net/chelsio/vsc8244.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/drivers/net/chelsio/vsc8244.c b/drivers/net/chelsio/vsc8244.c index c493e783d459..f947cf6059b1 100644 --- a/drivers/net/chelsio/vsc8244.c +++ b/drivers/net/chelsio/vsc8244.c | |||
@@ -347,7 +347,8 @@ static struct cphy* vsc8244_phy_create(adapter_t *adapter, int phy_addr, struct | |||
347 | { | 347 | { |
348 | struct cphy *cphy = kzalloc(sizeof(*cphy), GFP_KERNEL); | 348 | struct cphy *cphy = kzalloc(sizeof(*cphy), GFP_KERNEL); |
349 | 349 | ||
350 | if (!cphy) return NULL; | 350 | if (!cphy) |
351 | return NULL; | ||
351 | 352 | ||
352 | cphy_init(cphy, adapter, phy_addr, &vsc8244_ops, mdio_ops); | 353 | cphy_init(cphy, adapter, phy_addr, &vsc8244_ops, mdio_ops); |
353 | 354 | ||