diff options
author | Stephen Rothwell <sfr@canb.auug.org.au> | 2005-10-24 00:53:21 -0400 |
---|---|---|
committer | Stephen Rothwell <sfr@canb.auug.org.au> | 2005-10-24 01:42:12 -0400 |
commit | 6fdf5392caa4c3cba65add0a4beec9f5eb96b723 (patch) | |
tree | 336ba343889a1d720e09477c2ea88cd5f99a67b9 /drivers/net/iseries_veth.c | |
parent | f38d87f566195d78bd70538d5c774758f2d926d3 (diff) |
powerpc: don't duplicate name between vio_driver and device_driver
Just set the name field directly in the device_driver structure
contained in the vio_driver struct.
Signed-off-by: Stephen Rothwell <sfr@canb.auug.org.au>
Diffstat (limited to 'drivers/net/iseries_veth.c')
-rw-r--r-- | drivers/net/iseries_veth.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/drivers/net/iseries_veth.c b/drivers/net/iseries_veth.c index db3bc2f6f0fa..33613fe9556c 100644 --- a/drivers/net/iseries_veth.c +++ b/drivers/net/iseries_veth.c | |||
@@ -1648,10 +1648,12 @@ static struct vio_device_id veth_device_table[] __devinitdata = { | |||
1648 | MODULE_DEVICE_TABLE(vio, veth_device_table); | 1648 | MODULE_DEVICE_TABLE(vio, veth_device_table); |
1649 | 1649 | ||
1650 | static struct vio_driver veth_driver = { | 1650 | static struct vio_driver veth_driver = { |
1651 | .name = DRV_NAME, | ||
1652 | .id_table = veth_device_table, | 1651 | .id_table = veth_device_table, |
1653 | .probe = veth_probe, | 1652 | .probe = veth_probe, |
1654 | .remove = veth_remove | 1653 | .remove = veth_remove, |
1654 | .driver = { | ||
1655 | .name = DRV_NAME, | ||
1656 | } | ||
1655 | }; | 1657 | }; |
1656 | 1658 | ||
1657 | /* | 1659 | /* |