diff options
Diffstat (limited to 'drivers/spi/spi-davinci.c')
-rw-r--r-- | drivers/spi/spi-davinci.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/drivers/spi/spi-davinci.c b/drivers/spi/spi-davinci.c index 147dfa87a64b..13661e129d96 100644 --- a/drivers/spi/spi-davinci.c +++ b/drivers/spi/spi-davinci.c | |||
@@ -769,7 +769,7 @@ rx_dma_failed: | |||
769 | * It will invoke spi_bitbang_start to create work queue so that client driver | 769 | * It will invoke spi_bitbang_start to create work queue so that client driver |
770 | * can register transfer method to work queue. | 770 | * can register transfer method to work queue. |
771 | */ | 771 | */ |
772 | static int __devinit davinci_spi_probe(struct platform_device *pdev) | 772 | static int davinci_spi_probe(struct platform_device *pdev) |
773 | { | 773 | { |
774 | struct spi_master *master; | 774 | struct spi_master *master; |
775 | struct davinci_spi *dspi; | 775 | struct davinci_spi *dspi; |
@@ -952,7 +952,7 @@ err: | |||
952 | * It will also call spi_bitbang_stop to destroy the work queue which was | 952 | * It will also call spi_bitbang_stop to destroy the work queue which was |
953 | * created by spi_bitbang_start. | 953 | * created by spi_bitbang_start. |
954 | */ | 954 | */ |
955 | static int __devexit davinci_spi_remove(struct platform_device *pdev) | 955 | static int davinci_spi_remove(struct platform_device *pdev) |
956 | { | 956 | { |
957 | struct davinci_spi *dspi; | 957 | struct davinci_spi *dspi; |
958 | struct spi_master *master; | 958 | struct spi_master *master; |
@@ -980,7 +980,7 @@ static struct platform_driver davinci_spi_driver = { | |||
980 | .owner = THIS_MODULE, | 980 | .owner = THIS_MODULE, |
981 | }, | 981 | }, |
982 | .probe = davinci_spi_probe, | 982 | .probe = davinci_spi_probe, |
983 | .remove = __devexit_p(davinci_spi_remove), | 983 | .remove = davinci_spi_remove, |
984 | }; | 984 | }; |
985 | module_platform_driver(davinci_spi_driver); | 985 | module_platform_driver(davinci_spi_driver); |
986 | 986 | ||