]> git.hungrycats.org Git - linux/commitdiff
net driver's Space.c was missing {'s. Weird.
authorDave Jones <davej@suse.de>
Tue, 30 Apr 2002 22:16:00 +0000 (18:16 -0400)
committerJeff Garzik <jgarzik@mandrakesoft.com>
Tue, 30 Apr 2002 22:16:00 +0000 (18:16 -0400)
drivers/net/Space.c

index db7a696ea7ce580bb8880719c0730eb967498e5b..254d256c14eae3d3d1d153a011fe348dd54fab93 100644 (file)
@@ -697,37 +697,37 @@ static struct net_device sbni7_dev = {
        next:           NEXT_DEV,
        init:           sbni_probe,
 };
-static struct net_device sbni6_dev =
+static struct net_device sbni6_dev = {
        name:           "sbni6",
        next:           &sbni7_dev,
        init:           sbni_probe,
 };
-static struct net_device sbni5_dev =
+static struct net_device sbni5_dev = {
        name:           "sbni5",
        next:           &sbni6_dev,
        init:           sbni_probe,
 };
-static struct net_device sbni4_dev =
+static struct net_device sbni4_dev = {
        name:           "sbni4",
        next:           &sbni5_dev,
        init:           sbni_probe,
 };
-static struct net_device sbni3_dev =
+static struct net_device sbni3_dev = {
        name:           "sbni3",
        next:           &sbni4_dev,
        init:           sbni_probe,
 };
-static struct net_device sbni2_dev =
+static struct net_device sbni2_dev = {
        name:           "sbni2",
        next:           &sbni3_dev,
        init:           sbni_probe,
 };
-static struct net_device sbni1_dev =
+static struct net_device sbni1_dev = {
        name:           "sbni1",
        next:           &sbni2_dev,
        init:           sbni_probe,
 };
-static struct net_device sbni0_dev =
+static struct net_device sbni0_dev = {
        name:           "sbni0",
        next:           &sbni1_dev,
        init:           sbni_probe,