aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/spi/spi-falcon.c
diff options
context:
space:
mode:
Diffstat (limited to 'drivers/spi/spi-falcon.c')
-rw-r--r--drivers/spi/spi-falcon.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/drivers/spi/spi-falcon.c b/drivers/spi/spi-falcon.c
index 8f6aa735a24c..6a6f62ec2840 100644
--- a/drivers/spi/spi-falcon.c
+++ b/drivers/spi/spi-falcon.c
@@ -403,7 +403,7 @@ static int falcon_sflash_xfer_one(struct spi_master *master,
403 return 0; 403 return 0;
404} 404}
405 405
406static int __devinit falcon_sflash_probe(struct platform_device *pdev) 406static int falcon_sflash_probe(struct platform_device *pdev)
407{ 407{
408 struct falcon_sflash *priv; 408 struct falcon_sflash *priv;
409 struct spi_master *master; 409 struct spi_master *master;
@@ -438,7 +438,7 @@ static int __devinit falcon_sflash_probe(struct platform_device *pdev)
438 return ret; 438 return ret;
439} 439}
440 440
441static int __devexit falcon_sflash_remove(struct platform_device *pdev) 441static int falcon_sflash_remove(struct platform_device *pdev)
442{ 442{
443 struct falcon_sflash *priv = platform_get_drvdata(pdev); 443 struct falcon_sflash *priv = platform_get_drvdata(pdev);
444 444
@@ -455,7 +455,7 @@ MODULE_DEVICE_TABLE(of, falcon_sflash_match);
455 455
456static struct platform_driver falcon_sflash_driver = { 456static struct platform_driver falcon_sflash_driver = {
457 .probe = falcon_sflash_probe, 457 .probe = falcon_sflash_probe,
458 .remove = __devexit_p(falcon_sflash_remove), 458 .remove = falcon_sflash_remove,
459 .driver = { 459 .driver = {
460 .name = DRV_NAME, 460 .name = DRV_NAME,
461 .owner = THIS_MODULE, 461 .owner = THIS_MODULE,