aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/net/chelsio/vsc7326.c
diff options
context:
space:
mode:
authorFrancois Romieu <romieu@fr.zoreil.com>2006-12-05 16:38:00 -0500
committerJeff Garzik <jeff@garzik.org>2007-02-05 16:58:43 -0500
commitc697f83e8c880a1e69fb2a45a6e4aa0670e10602 (patch)
tree27cd53ac86ccd5f1ae644d7cf074a05740b8db2b /drivers/net/chelsio/vsc7326.c
parentea8862dc86c0f5a0be012a0f2e9de1b2ccabbaa5 (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/vsc7326.c')
-rw-r--r--drivers/net/chelsio/vsc7326.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/drivers/net/chelsio/vsc7326.c b/drivers/net/chelsio/vsc7326.c
index 85dc3b1dc309..335544132ee3 100644
--- a/drivers/net/chelsio/vsc7326.c
+++ b/drivers/net/chelsio/vsc7326.c
@@ -686,7 +686,8 @@ static struct cmac *vsc7326_mac_create(adapter_t *adapter, int index)
686 int i; 686 int i;
687 687
688 mac = kzalloc(sizeof(*mac) + sizeof(cmac_instance), GFP_KERNEL); 688 mac = kzalloc(sizeof(*mac) + sizeof(cmac_instance), GFP_KERNEL);
689 if (!mac) return NULL; 689 if (!mac)
690 return NULL;
690 691
691 mac->ops = &vsc7326_ops; 692 mac->ops = &vsc7326_ops;
692 mac->instance = (cmac_instance *)(mac + 1); 693 mac->instance = (cmac_instance *)(mac + 1);