diff options
author | Greg KH <gregkh@linuxfoundation.org> | 2012-12-21 08:42:15 -0500 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2012-12-22 03:03:00 -0500 |
commit | 03ce758e56c483bf5d0035dbd1a53ca2940a3eb0 (patch) | |
tree | d1d546469f070ad5c17273d9ee9bdef1e5dad579 /drivers/net/ethernet/marvell/mvmdio.c | |
parent | 9b1536c490d572f2ed4af0a15bd5d6cf349a9db4 (diff) |
Drivers: network: more __dev* removal
Remove some __dev* markings that snuck in the 3.8-rc1 merge window in
the drivers/net/* directory.
Cc: Bill Pemberton <wfp5p@virginia.edu>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers/net/ethernet/marvell/mvmdio.c')
-rw-r--r-- | drivers/net/ethernet/marvell/mvmdio.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/drivers/net/ethernet/marvell/mvmdio.c b/drivers/net/ethernet/marvell/mvmdio.c index 6d6002bab060..74f1c157a480 100644 --- a/drivers/net/ethernet/marvell/mvmdio.c +++ b/drivers/net/ethernet/marvell/mvmdio.c | |||
@@ -141,7 +141,7 @@ static int orion_mdio_reset(struct mii_bus *bus) | |||
141 | return 0; | 141 | return 0; |
142 | } | 142 | } |
143 | 143 | ||
144 | static int __devinit orion_mdio_probe(struct platform_device *pdev) | 144 | static int orion_mdio_probe(struct platform_device *pdev) |
145 | { | 145 | { |
146 | struct device_node *np = pdev->dev.of_node; | 146 | struct device_node *np = pdev->dev.of_node; |
147 | struct mii_bus *bus; | 147 | struct mii_bus *bus; |
@@ -197,7 +197,7 @@ static int __devinit orion_mdio_probe(struct platform_device *pdev) | |||
197 | return 0; | 197 | return 0; |
198 | } | 198 | } |
199 | 199 | ||
200 | static int __devexit orion_mdio_remove(struct platform_device *pdev) | 200 | static int orion_mdio_remove(struct platform_device *pdev) |
201 | { | 201 | { |
202 | struct mii_bus *bus = platform_get_drvdata(pdev); | 202 | struct mii_bus *bus = platform_get_drvdata(pdev); |
203 | mdiobus_unregister(bus); | 203 | mdiobus_unregister(bus); |
@@ -214,7 +214,7 @@ MODULE_DEVICE_TABLE(of, orion_mdio_match); | |||
214 | 214 | ||
215 | static struct platform_driver orion_mdio_driver = { | 215 | static struct platform_driver orion_mdio_driver = { |
216 | .probe = orion_mdio_probe, | 216 | .probe = orion_mdio_probe, |
217 | .remove = __devexit_p(orion_mdio_remove), | 217 | .remove = orion_mdio_remove, |
218 | .driver = { | 218 | .driver = { |
219 | .name = "orion-mdio", | 219 | .name = "orion-mdio", |
220 | .of_match_table = orion_mdio_match, | 220 | .of_match_table = orion_mdio_match, |