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

cpsw: 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 36915876
...@@ -1136,7 +1136,7 @@ static int cpsw_probe_dt(struct cpsw_platform_data *data, ...@@ -1136,7 +1136,7 @@ static int cpsw_probe_dt(struct cpsw_platform_data *data,
return ret; return ret;
} }
static int __devinit cpsw_probe(struct platform_device *pdev) static int cpsw_probe(struct platform_device *pdev)
{ {
struct cpsw_platform_data *data = pdev->dev.platform_data; struct cpsw_platform_data *data = pdev->dev.platform_data;
struct net_device *ndev; struct net_device *ndev;
...@@ -1398,7 +1398,7 @@ static int __devinit cpsw_probe(struct platform_device *pdev) ...@@ -1398,7 +1398,7 @@ static int __devinit cpsw_probe(struct platform_device *pdev)
return ret; return ret;
} }
static int __devexit cpsw_remove(struct platform_device *pdev) static int cpsw_remove(struct platform_device *pdev)
{ {
struct net_device *ndev = platform_get_drvdata(pdev); struct net_device *ndev = platform_get_drvdata(pdev);
struct cpsw_priv *priv = netdev_priv(ndev); struct cpsw_priv *priv = netdev_priv(ndev);
...@@ -1467,7 +1467,7 @@ static struct platform_driver cpsw_driver = { ...@@ -1467,7 +1467,7 @@ static struct platform_driver cpsw_driver = {
.of_match_table = of_match_ptr(cpsw_of_mtable), .of_match_table = of_match_ptr(cpsw_of_mtable),
}, },
.probe = cpsw_probe, .probe = cpsw_probe,
.remove = __devexit_p(cpsw_remove), .remove = cpsw_remove,
}; };
static int __init cpsw_init(void) static int __init cpsw_init(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