diff options
author | Bill Pemberton <wfp5p@virginia.edu> | 2012-12-03 09:22:47 -0500 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2012-12-03 11:16:12 -0800 |
commit | 58b10698d2d60b0b0c3bddd72038af14e62f92bc (patch) | |
tree | 6a860e5fb24c348eb831b6656bf1074e0f12dfc8 /drivers/net/ethernet/i825xx/lib82596.c | |
parent | 663c2a69e943b391b3cea25c616e339c5d5d4fab (diff) | |
download | linux-58b10698d2d60b0b0c3bddd72038af14e62f92bc.tar.gz linux-58b10698d2d60b0b0c3bddd72038af14e62f92bc.tar.bz2 linux-58b10698d2d60b0b0c3bddd72038af14e62f92bc.zip |
i825xx: 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/i825xx/lib82596.c')
-rw-r--r-- | drivers/net/ethernet/i825xx/lib82596.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/net/ethernet/i825xx/lib82596.c b/drivers/net/ethernet/i825xx/lib82596.c index 3efbd8dbb63d..f045ea4dc514 100644 --- a/drivers/net/ethernet/i825xx/lib82596.c +++ b/drivers/net/ethernet/i825xx/lib82596.c @@ -1048,7 +1048,7 @@ static const struct net_device_ops i596_netdev_ops = { #endif }; -static int __devinit i82596_probe(struct net_device *dev) +static int i82596_probe(struct net_device *dev) { int i; struct i596_private *lp = netdev_priv(dev); |