diff options
author | Bill Pemberton <wfp5p@virginia.edu> | 2012-12-03 14:24:01 (GMT) |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2012-12-03 19:16:55 (GMT) |
commit | f48a3c2af87960e3d497b518a3253337a18016db (patch) | |
tree | f8a2169f15b14e9ea9777a720c7f23a4fba2a5be /drivers/net/ethernet/sgi/meth.c | |
parent | 03c4d832a2a752120d18567c27812d53ab176e6e (diff) | |
download | linux-fsl-qoriq-f48a3c2af87960e3d497b518a3253337a18016db.tar.xz |
net/sgi: 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: Bill Pemberton <wfp5p@virginia.edu>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/net/ethernet/sgi/meth.c')
-rw-r--r-- | drivers/net/ethernet/sgi/meth.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/net/ethernet/sgi/meth.c b/drivers/net/ethernet/sgi/meth.c index 53efe7c..79ad9c9 100644 --- a/drivers/net/ethernet/sgi/meth.c +++ b/drivers/net/ethernet/sgi/meth.c @@ -825,7 +825,7 @@ static const struct net_device_ops meth_netdev_ops = { /* * The init function. */ -static int __devinit meth_probe(struct platform_device *pdev) +static int meth_probe(struct platform_device *pdev) { struct net_device *dev; struct meth_private *priv; |