Commit f3f9e509 authored by Bill Pemberton's avatar Bill Pemberton Committed by Greg Kroah-Hartman

smsc9420: 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: default avatarBill Pemberton <wfp5p@virginia.edu>
Cc: Steve Glendinning <steve.glendinning@shawell.net>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 9f1e13db
...@@ -1577,7 +1577,7 @@ static const struct net_device_ops smsc9420_netdev_ops = { ...@@ -1577,7 +1577,7 @@ static const struct net_device_ops smsc9420_netdev_ops = {
#endif /* CONFIG_NET_POLL_CONTROLLER */ #endif /* CONFIG_NET_POLL_CONTROLLER */
}; };
static int __devinit static int
smsc9420_probe(struct pci_dev *pdev, const struct pci_device_id *id) smsc9420_probe(struct pci_dev *pdev, const struct pci_device_id *id)
{ {
struct net_device *dev; struct net_device *dev;
...@@ -1702,7 +1702,7 @@ smsc9420_probe(struct pci_dev *pdev, const struct pci_device_id *id) ...@@ -1702,7 +1702,7 @@ smsc9420_probe(struct pci_dev *pdev, const struct pci_device_id *id)
return -ENODEV; return -ENODEV;
} }
static void __devexit smsc9420_remove(struct pci_dev *pdev) static void smsc9420_remove(struct pci_dev *pdev)
{ {
struct net_device *dev; struct net_device *dev;
struct smsc9420_pdata *pd; struct smsc9420_pdata *pd;
...@@ -1736,7 +1736,7 @@ static struct pci_driver smsc9420_driver = { ...@@ -1736,7 +1736,7 @@ static struct pci_driver smsc9420_driver = {
.name = DRV_NAME, .name = DRV_NAME,
.id_table = smsc9420_id_table, .id_table = smsc9420_id_table,
.probe = smsc9420_probe, .probe = smsc9420_probe,
.remove = __devexit_p(smsc9420_remove), .remove = smsc9420_remove,
#ifdef CONFIG_PM #ifdef CONFIG_PM
.suspend = smsc9420_suspend, .suspend = smsc9420_suspend,
.resume = smsc9420_resume, .resume = smsc9420_resume,
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment