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

dm9000: 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>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 854de92f
...@@ -1359,7 +1359,7 @@ static const struct net_device_ops dm9000_netdev_ops = { ...@@ -1359,7 +1359,7 @@ static const struct net_device_ops dm9000_netdev_ops = {
/* /*
* Search DM9000 board, allocate space and register it * Search DM9000 board, allocate space and register it
*/ */
static int __devinit static int
dm9000_probe(struct platform_device *pdev) dm9000_probe(struct platform_device *pdev)
{ {
struct dm9000_plat_data *pdata = pdev->dev.platform_data; struct dm9000_plat_data *pdata = pdev->dev.platform_data;
...@@ -1661,7 +1661,7 @@ static const struct dev_pm_ops dm9000_drv_pm_ops = { ...@@ -1661,7 +1661,7 @@ static const struct dev_pm_ops dm9000_drv_pm_ops = {
.resume = dm9000_drv_resume, .resume = dm9000_drv_resume,
}; };
static int __devexit static int
dm9000_drv_remove(struct platform_device *pdev) dm9000_drv_remove(struct platform_device *pdev)
{ {
struct net_device *ndev = platform_get_drvdata(pdev); struct net_device *ndev = platform_get_drvdata(pdev);
...@@ -1683,7 +1683,7 @@ static struct platform_driver dm9000_driver = { ...@@ -1683,7 +1683,7 @@ static struct platform_driver dm9000_driver = {
.pm = &dm9000_drv_pm_ops, .pm = &dm9000_drv_pm_ops,
}, },
.probe = dm9000_probe, .probe = dm9000_probe,
.remove = __devexit_p(dm9000_drv_remove), .remove = dm9000_drv_remove,
}; };
static int __init static int __init
......
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