提交 7c47bab6 编写于 作者: B Bill Pemberton 提交者: Greg Kroah-Hartman

ARCNET: 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: NBill Pemberton <wfp5p@virginia.edu>
Signed-off-by: NGreg Kroah-Hartman <gregkh@linuxfoundation.org>
上级 60e476d0
...@@ -61,7 +61,7 @@ module_param(clockp, int, 0); ...@@ -61,7 +61,7 @@ module_param(clockp, int, 0);
module_param(clockm, int, 0); module_param(clockm, int, 0);
MODULE_LICENSE("GPL"); MODULE_LICENSE("GPL");
static int __devinit com20020pci_probe(struct pci_dev *pdev, const struct pci_device_id *id) static int com20020pci_probe(struct pci_dev *pdev, const struct pci_device_id *id)
{ {
struct net_device *dev; struct net_device *dev;
struct arcnet_local *lp; struct arcnet_local *lp;
...@@ -135,7 +135,7 @@ static int __devinit com20020pci_probe(struct pci_dev *pdev, const struct pci_de ...@@ -135,7 +135,7 @@ static int __devinit com20020pci_probe(struct pci_dev *pdev, const struct pci_de
return err; return err;
} }
static void __devexit com20020pci_remove(struct pci_dev *pdev) static void com20020pci_remove(struct pci_dev *pdev)
{ {
struct net_device *dev = pci_get_drvdata(pdev); struct net_device *dev = pci_get_drvdata(pdev);
unregister_netdev(dev); unregister_netdev(dev);
...@@ -178,7 +178,7 @@ static struct pci_driver com20020pci_driver = { ...@@ -178,7 +178,7 @@ static struct pci_driver com20020pci_driver = {
.name = "com20020", .name = "com20020",
.id_table = com20020pci_id_table, .id_table = com20020pci_id_table,
.probe = com20020pci_probe, .probe = com20020pci_probe,
.remove = __devexit_p(com20020pci_remove), .remove = com20020pci_remove,
}; };
static int __init com20020pci_init(void) static int __init com20020pci_init(void)
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册