aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/crypto/picoxcell_crypto.c
diff options
context:
space:
mode:
authorOlof Johansson <olof@lixom.net>2013-01-14 13:20:02 -0500
committerOlof Johansson <olof@lixom.net>2013-01-14 13:20:02 -0500
commit8d84981e395850aab31c3f2ca7e2738e03f671d7 (patch)
tree933425fddb23d28be802277471df3fe3f6c2711d /drivers/crypto/picoxcell_crypto.c
parent00c82d64405631967dca3890a9ce80ab35d04cc7 (diff)
parent77cc982f6a3b33a5aa058ad3b20cda8866db2948 (diff)
Merge branch 'clocksource/cleanup' into next/cleanup
Clockevent cleanup series from Shawn Guo. Resolved move/change conflict in mach-pxa/time.c due to the sys_timer cleanup. * clocksource/cleanup: clocksource: use clockevents_config_and_register() where possible ARM: use clockevents_config_and_register() where possible clockevents: export clockevents_config_and_register for module use + sync to Linux 3.8-rc3 Signed-off-by: Olof Johansson <olof@lixom.net> Conflicts: arch/arm/mach-pxa/time.c
Diffstat (limited to 'drivers/crypto/picoxcell_crypto.c')
-rw-r--r--drivers/crypto/picoxcell_crypto.c6
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
1711static int __devinit spacc_probe(struct platform_device *pdev) 1711static 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
1844static int __devexit spacc_remove(struct platform_device *pdev) 1844static 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
1869static struct platform_driver spacc_driver = { 1869static 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