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

net/octeon_mgmt: 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 21524526
...@@ -1419,7 +1419,7 @@ static const struct net_device_ops octeon_mgmt_ops = { ...@@ -1419,7 +1419,7 @@ static const struct net_device_ops octeon_mgmt_ops = {
#endif #endif
}; };
static int __devinit octeon_mgmt_probe(struct platform_device *pdev) static int octeon_mgmt_probe(struct platform_device *pdev)
{ {
struct net_device *netdev; struct net_device *netdev;
struct octeon_mgmt *p; struct octeon_mgmt *p;
...@@ -1559,7 +1559,7 @@ static int __devinit octeon_mgmt_probe(struct platform_device *pdev) ...@@ -1559,7 +1559,7 @@ static int __devinit octeon_mgmt_probe(struct platform_device *pdev)
return result; return result;
} }
static int __devexit octeon_mgmt_remove(struct platform_device *pdev) static int octeon_mgmt_remove(struct platform_device *pdev)
{ {
struct net_device *netdev = dev_get_drvdata(&pdev->dev); struct net_device *netdev = dev_get_drvdata(&pdev->dev);
...@@ -1583,7 +1583,7 @@ static struct platform_driver octeon_mgmt_driver = { ...@@ -1583,7 +1583,7 @@ static struct platform_driver octeon_mgmt_driver = {
.of_match_table = octeon_mgmt_match, .of_match_table = octeon_mgmt_match,
}, },
.probe = octeon_mgmt_probe, .probe = octeon_mgmt_probe,
.remove = __devexit_p(octeon_mgmt_remove), .remove = octeon_mgmt_remove,
}; };
extern void octeon_mdiobus_force_mod_depencency(void); extern void octeon_mdiobus_force_mod_depencency(void);
......
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