diff options
author | Bill Pemberton <wfp5p@virginia.edu> | 2012-12-03 09:23:12 -0500 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2012-12-03 14:16:43 -0500 |
commit | e11787a2313c41a1f4469d797b2d9bc6fe0642b1 (patch) | |
tree | ecefdf8006f50de5f37d73f04df388a84eaabcf8 | |
parent | 170b52b873ca0772a1ae2453258eeec825d9b8af (diff) |
ibmveth: remove __dev* attributes
CONFIG_HOTPLUG is going away as an option. As result the __dev*
markings will be going away.
Remove use of __devinit, __devexit_p, __devinitdata, __devinitconst,
and __devexit.
Signed-off-by: Bill Pemberton <wfp5p@virginia.edu>
Cc: Santiago Leon <santil@linux.vnet.ibm.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
-rw-r--r-- | drivers/net/ethernet/ibm/ibmveth.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/drivers/net/ethernet/ibm/ibmveth.c b/drivers/net/ethernet/ibm/ibmveth.c index b68d28a130e6..35485f2c144c 100644 --- a/drivers/net/ethernet/ibm/ibmveth.c +++ b/drivers/net/ethernet/ibm/ibmveth.c | |||
@@ -1324,7 +1324,7 @@ static const struct net_device_ops ibmveth_netdev_ops = { | |||
1324 | #endif | 1324 | #endif |
1325 | }; | 1325 | }; |
1326 | 1326 | ||
1327 | static int __devinit ibmveth_probe(struct vio_dev *dev, | 1327 | static int ibmveth_probe(struct vio_dev *dev, |
1328 | const struct vio_device_id *id) | 1328 | const struct vio_device_id *id) |
1329 | { | 1329 | { |
1330 | int rc, i; | 1330 | int rc, i; |
@@ -1426,7 +1426,7 @@ static int __devinit ibmveth_probe(struct vio_dev *dev, | |||
1426 | return 0; | 1426 | return 0; |
1427 | } | 1427 | } |
1428 | 1428 | ||
1429 | static int __devexit ibmveth_remove(struct vio_dev *dev) | 1429 | static int ibmveth_remove(struct vio_dev *dev) |
1430 | { | 1430 | { |
1431 | struct net_device *netdev = dev_get_drvdata(&dev->dev); | 1431 | struct net_device *netdev = dev_get_drvdata(&dev->dev); |
1432 | struct ibmveth_adapter *adapter = netdev_priv(netdev); | 1432 | struct ibmveth_adapter *adapter = netdev_priv(netdev); |
@@ -1593,7 +1593,7 @@ static int ibmveth_resume(struct device *dev) | |||
1593 | return 0; | 1593 | return 0; |
1594 | } | 1594 | } |
1595 | 1595 | ||
1596 | static struct vio_device_id ibmveth_device_table[] __devinitdata = { | 1596 | static struct vio_device_id ibmveth_device_table[] = { |
1597 | { "network", "IBM,l-lan"}, | 1597 | { "network", "IBM,l-lan"}, |
1598 | { "", "" } | 1598 | { "", "" } |
1599 | }; | 1599 | }; |