diff options
Diffstat (limited to 'drivers')
-rw-r--r-- | drivers/net/loopback.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/drivers/net/loopback.c b/drivers/net/loopback.c index 0e2252fd71ab..588092e13186 100644 --- a/drivers/net/loopback.c +++ b/drivers/net/loopback.c | |||
@@ -202,7 +202,7 @@ static const struct ethtool_ops loopback_ethtool_ops = { | |||
202 | * The loopback device is special. There is only one instance and | 202 | * The loopback device is special. There is only one instance and |
203 | * it is statically allocated. Don't do this for other devices. | 203 | * it is statically allocated. Don't do this for other devices. |
204 | */ | 204 | */ |
205 | struct net_device loopback_dev = { | 205 | struct net_device __loopback_dev = { |
206 | .name = "lo", | 206 | .name = "lo", |
207 | .get_stats = &get_stats, | 207 | .get_stats = &get_stats, |
208 | .mtu = (16 * 1024) + 20 + 20 + 12, | 208 | .mtu = (16 * 1024) + 20 + 20 + 12, |
@@ -227,10 +227,12 @@ struct net_device loopback_dev = { | |||
227 | .nd_net = &init_net, | 227 | .nd_net = &init_net, |
228 | }; | 228 | }; |
229 | 229 | ||
230 | struct net_device *loopback_dev = &__loopback_dev; | ||
231 | |||
230 | /* Setup and register the loopback device. */ | 232 | /* Setup and register the loopback device. */ |
231 | static int __init loopback_init(void) | 233 | static int __init loopback_init(void) |
232 | { | 234 | { |
233 | int err = register_netdev(&loopback_dev); | 235 | int err = register_netdev(loopback_dev); |
234 | 236 | ||
235 | if (err) | 237 | if (err) |
236 | panic("loopback: Failed to register netdevice: %d\n", err); | 238 | panic("loopback: Failed to register netdevice: %d\n", err); |