diff options
Diffstat (limited to 'drivers/spi/spidev.c')
-rw-r--r-- | drivers/spi/spidev.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/drivers/spi/spidev.c b/drivers/spi/spidev.c index e44abc96cd05..2e0655dbe070 100644 --- a/drivers/spi/spidev.c +++ b/drivers/spi/spidev.c | |||
@@ -573,7 +573,7 @@ static struct class *spidev_class; | |||
573 | 573 | ||
574 | /*-------------------------------------------------------------------------*/ | 574 | /*-------------------------------------------------------------------------*/ |
575 | 575 | ||
576 | static int __devinit spidev_probe(struct spi_device *spi) | 576 | static int spidev_probe(struct spi_device *spi) |
577 | { | 577 | { |
578 | struct spidev_data *spidev; | 578 | struct spidev_data *spidev; |
579 | int status; | 579 | int status; |
@@ -622,7 +622,7 @@ static int __devinit spidev_probe(struct spi_device *spi) | |||
622 | return status; | 622 | return status; |
623 | } | 623 | } |
624 | 624 | ||
625 | static int __devexit spidev_remove(struct spi_device *spi) | 625 | static int spidev_remove(struct spi_device *spi) |
626 | { | 626 | { |
627 | struct spidev_data *spidev = spi_get_drvdata(spi); | 627 | struct spidev_data *spidev = spi_get_drvdata(spi); |
628 | 628 | ||
@@ -658,7 +658,7 @@ static struct spi_driver spidev_spi_driver = { | |||
658 | .of_match_table = of_match_ptr(spidev_dt_ids), | 658 | .of_match_table = of_match_ptr(spidev_dt_ids), |
659 | }, | 659 | }, |
660 | .probe = spidev_probe, | 660 | .probe = spidev_probe, |
661 | .remove = __devexit_p(spidev_remove), | 661 | .remove = spidev_remove, |
662 | 662 | ||
663 | /* NOTE: suspend/resume methods are not necessary here. | 663 | /* NOTE: suspend/resume methods are not necessary here. |
664 | * We don't do anything except pass the requests to/from | 664 | * We don't do anything except pass the requests to/from |