diff options
author | Bill Pemberton <wfp5p@virginia.edu> | 2012-12-03 09:24:14 -0500 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2012-12-03 14:16:56 -0500 |
commit | 633d1594974b33a673a9eaf141d557e176202d8f (patch) | |
tree | 2769a66f51ecf59aa6b9892e74cf74591d1e9b0c /drivers/net/phy/spi_ks8995.c | |
parent | 45ac936c3ec93f347cfb7652bd7b332dc0c9b2e8 (diff) |
net/phy: 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/phy/spi_ks8995.c')
-rw-r--r-- | drivers/net/phy/spi_ks8995.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/drivers/net/phy/spi_ks8995.c b/drivers/net/phy/spi_ks8995.c index 1c3abce78b6a..41eb8ffeb53d 100644 --- a/drivers/net/phy/spi_ks8995.c +++ b/drivers/net/phy/spi_ks8995.c | |||
@@ -264,7 +264,7 @@ static struct bin_attribute ks8995_registers_attr = { | |||
264 | 264 | ||
265 | /* ------------------------------------------------------------------------ */ | 265 | /* ------------------------------------------------------------------------ */ |
266 | 266 | ||
267 | static int __devinit ks8995_probe(struct spi_device *spi) | 267 | static int ks8995_probe(struct spi_device *spi) |
268 | { | 268 | { |
269 | struct ks8995_switch *ks; | 269 | struct ks8995_switch *ks; |
270 | struct ks8995_pdata *pdata; | 270 | struct ks8995_pdata *pdata; |
@@ -332,7 +332,7 @@ err_drvdata: | |||
332 | return err; | 332 | return err; |
333 | } | 333 | } |
334 | 334 | ||
335 | static int __devexit ks8995_remove(struct spi_device *spi) | 335 | static int ks8995_remove(struct spi_device *spi) |
336 | { | 336 | { |
337 | struct ks8995_data *ks8995; | 337 | struct ks8995_data *ks8995; |
338 | 338 | ||
@@ -353,7 +353,7 @@ static struct spi_driver ks8995_driver = { | |||
353 | .owner = THIS_MODULE, | 353 | .owner = THIS_MODULE, |
354 | }, | 354 | }, |
355 | .probe = ks8995_probe, | 355 | .probe = ks8995_probe, |
356 | .remove = __devexit_p(ks8995_remove), | 356 | .remove = ks8995_remove, |
357 | }; | 357 | }; |
358 | 358 | ||
359 | static int __init ks8995_init(void) | 359 | static int __init ks8995_init(void) |