diff options
Diffstat (limited to 'drivers/misc/eeprom/at25.c')
-rw-r--r-- | drivers/misc/eeprom/at25.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/misc/eeprom/at25.c b/drivers/misc/eeprom/at25.c index 4ed93dd54116..b08cf8a08789 100644 --- a/drivers/misc/eeprom/at25.c +++ b/drivers/misc/eeprom/at25.c | |||
@@ -459,7 +459,7 @@ fail: | |||
459 | return err; | 459 | return err; |
460 | } | 460 | } |
461 | 461 | ||
462 | static int __devexit at25_remove(struct spi_device *spi) | 462 | static int at25_remove(struct spi_device *spi) |
463 | { | 463 | { |
464 | struct at25_data *at25; | 464 | struct at25_data *at25; |
465 | 465 | ||
@@ -477,7 +477,7 @@ static struct spi_driver at25_driver = { | |||
477 | .owner = THIS_MODULE, | 477 | .owner = THIS_MODULE, |
478 | }, | 478 | }, |
479 | .probe = at25_probe, | 479 | .probe = at25_probe, |
480 | .remove = __devexit_p(at25_remove), | 480 | .remove = at25_remove, |
481 | }; | 481 | }; |
482 | 482 | ||
483 | module_spi_driver(at25_driver); | 483 | module_spi_driver(at25_driver); |