diff options
Diffstat (limited to 'drivers/crypto/bfin_crc.c')
-rw-r--r-- | drivers/crypto/bfin_crc.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/drivers/crypto/bfin_crc.c b/drivers/crypto/bfin_crc.c index 5398580b4313..a22f1a9f895f 100644 --- a/drivers/crypto/bfin_crc.c +++ b/drivers/crypto/bfin_crc.c | |||
@@ -586,7 +586,7 @@ static int bfin_crypto_crc_suspend(struct platform_device *pdev, pm_message_t st | |||
586 | * bfin_crypto_crc_probe - Initialize module | 586 | * bfin_crypto_crc_probe - Initialize module |
587 | * | 587 | * |
588 | */ | 588 | */ |
589 | static int __devinit bfin_crypto_crc_probe(struct platform_device *pdev) | 589 | static int bfin_crypto_crc_probe(struct platform_device *pdev) |
590 | { | 590 | { |
591 | struct device *dev = &pdev->dev; | 591 | struct device *dev = &pdev->dev; |
592 | struct resource *res; | 592 | struct resource *res; |
@@ -707,7 +707,7 @@ out_error_free_mem: | |||
707 | * bfin_crypto_crc_remove - Initialize module | 707 | * bfin_crypto_crc_remove - Initialize module |
708 | * | 708 | * |
709 | */ | 709 | */ |
710 | static int __devexit bfin_crypto_crc_remove(struct platform_device *pdev) | 710 | static int bfin_crypto_crc_remove(struct platform_device *pdev) |
711 | { | 711 | { |
712 | struct bfin_crypto_crc *crc = platform_get_drvdata(pdev); | 712 | struct bfin_crypto_crc *crc = platform_get_drvdata(pdev); |
713 | 713 | ||
@@ -731,7 +731,7 @@ static int __devexit bfin_crypto_crc_remove(struct platform_device *pdev) | |||
731 | 731 | ||
732 | static struct platform_driver bfin_crypto_crc_driver = { | 732 | static struct platform_driver bfin_crypto_crc_driver = { |
733 | .probe = bfin_crypto_crc_probe, | 733 | .probe = bfin_crypto_crc_probe, |
734 | .remove = __devexit_p(bfin_crypto_crc_remove), | 734 | .remove = bfin_crypto_crc_remove, |
735 | .suspend = bfin_crypto_crc_suspend, | 735 | .suspend = bfin_crypto_crc_suspend, |
736 | .resume = bfin_crypto_crc_resume, | 736 | .resume = bfin_crypto_crc_resume, |
737 | .driver = { | 737 | .driver = { |