diff options
Diffstat (limited to 'drivers/spi/spi-xilinx.c')
-rw-r--r-- | drivers/spi/spi-xilinx.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/drivers/spi/spi-xilinx.c b/drivers/spi/spi-xilinx.c index 4c5a663b9fa8..e1d769607425 100644 --- a/drivers/spi/spi-xilinx.c +++ b/drivers/spi/spi-xilinx.c | |||
@@ -462,7 +462,7 @@ void xilinx_spi_deinit(struct spi_master *master) | |||
462 | } | 462 | } |
463 | EXPORT_SYMBOL(xilinx_spi_deinit); | 463 | EXPORT_SYMBOL(xilinx_spi_deinit); |
464 | 464 | ||
465 | static int __devinit xilinx_spi_probe(struct platform_device *dev) | 465 | static int xilinx_spi_probe(struct platform_device *dev) |
466 | { | 466 | { |
467 | struct xspi_platform_data *pdata; | 467 | struct xspi_platform_data *pdata; |
468 | struct resource *r; | 468 | struct resource *r; |
@@ -518,7 +518,7 @@ static int __devinit xilinx_spi_probe(struct platform_device *dev) | |||
518 | return 0; | 518 | return 0; |
519 | } | 519 | } |
520 | 520 | ||
521 | static int __devexit xilinx_spi_remove(struct platform_device *dev) | 521 | static int xilinx_spi_remove(struct platform_device *dev) |
522 | { | 522 | { |
523 | xilinx_spi_deinit(platform_get_drvdata(dev)); | 523 | xilinx_spi_deinit(platform_get_drvdata(dev)); |
524 | platform_set_drvdata(dev, 0); | 524 | platform_set_drvdata(dev, 0); |
@@ -531,7 +531,7 @@ MODULE_ALIAS("platform:" XILINX_SPI_NAME); | |||
531 | 531 | ||
532 | static struct platform_driver xilinx_spi_driver = { | 532 | static struct platform_driver xilinx_spi_driver = { |
533 | .probe = xilinx_spi_probe, | 533 | .probe = xilinx_spi_probe, |
534 | .remove = __devexit_p(xilinx_spi_remove), | 534 | .remove = xilinx_spi_remove, |
535 | .driver = { | 535 | .driver = { |
536 | .name = XILINX_SPI_NAME, | 536 | .name = XILINX_SPI_NAME, |
537 | .owner = THIS_MODULE, | 537 | .owner = THIS_MODULE, |