diff options
Diffstat (limited to 'drivers/crypto/picoxcell_crypto.c')
-rw-r--r-- | drivers/crypto/picoxcell_crypto.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/drivers/crypto/picoxcell_crypto.c b/drivers/crypto/picoxcell_crypto.c index c983f869d2b7..2096d4685a9e 100644 --- a/drivers/crypto/picoxcell_crypto.c +++ b/drivers/crypto/picoxcell_crypto.c | |||
@@ -1708,7 +1708,7 @@ static bool spacc_is_compatible(struct platform_device *pdev, | |||
1708 | return false; | 1708 | return false; |
1709 | } | 1709 | } |
1710 | 1710 | ||
1711 | static int __devinit spacc_probe(struct platform_device *pdev) | 1711 | static int spacc_probe(struct platform_device *pdev) |
1712 | { | 1712 | { |
1713 | int i, err, ret = -EINVAL; | 1713 | int i, err, ret = -EINVAL; |
1714 | struct resource *mem, *irq; | 1714 | struct resource *mem, *irq; |
@@ -1841,7 +1841,7 @@ static int __devinit spacc_probe(struct platform_device *pdev) | |||
1841 | return ret; | 1841 | return ret; |
1842 | } | 1842 | } |
1843 | 1843 | ||
1844 | static int __devexit spacc_remove(struct platform_device *pdev) | 1844 | static int spacc_remove(struct platform_device *pdev) |
1845 | { | 1845 | { |
1846 | struct spacc_alg *alg, *next; | 1846 | struct spacc_alg *alg, *next; |
1847 | struct spacc_engine *engine = platform_get_drvdata(pdev); | 1847 | struct spacc_engine *engine = platform_get_drvdata(pdev); |
@@ -1868,7 +1868,7 @@ static const struct platform_device_id spacc_id_table[] = { | |||
1868 | 1868 | ||
1869 | static struct platform_driver spacc_driver = { | 1869 | static struct platform_driver spacc_driver = { |
1870 | .probe = spacc_probe, | 1870 | .probe = spacc_probe, |
1871 | .remove = __devexit_p(spacc_remove), | 1871 | .remove = spacc_remove, |
1872 | .driver = { | 1872 | .driver = { |
1873 | .name = "picochip,spacc", | 1873 | .name = "picochip,spacc", |
1874 | #ifdef CONFIG_PM | 1874 | #ifdef CONFIG_PM |