aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/power/ab8500_btemp.c
diff options
context:
space:
mode:
Diffstat (limited to 'drivers/power/ab8500_btemp.c')
-rw-r--r--drivers/power/ab8500_btemp.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/drivers/power/ab8500_btemp.c b/drivers/power/ab8500_btemp.c
index e3b6395b20d..989b09950af 100644
--- a/drivers/power/ab8500_btemp.c
+++ b/drivers/power/ab8500_btemp.c
@@ -938,7 +938,7 @@ static int ab8500_btemp_suspend(struct platform_device *pdev,
938#define ab8500_btemp_resume NULL 938#define ab8500_btemp_resume NULL
939#endif 939#endif
940 940
941static int __devexit ab8500_btemp_remove(struct platform_device *pdev) 941static int ab8500_btemp_remove(struct platform_device *pdev)
942{ 942{
943 struct ab8500_btemp *di = platform_get_drvdata(pdev); 943 struct ab8500_btemp *di = platform_get_drvdata(pdev);
944 int i, irq; 944 int i, irq;
@@ -960,7 +960,7 @@ static int __devexit ab8500_btemp_remove(struct platform_device *pdev)
960 return 0; 960 return 0;
961} 961}
962 962
963static int __devinit ab8500_btemp_probe(struct platform_device *pdev) 963static int ab8500_btemp_probe(struct platform_device *pdev)
964{ 964{
965 int irq, i, ret = 0; 965 int irq, i, ret = 0;
966 u8 val; 966 u8 val;
@@ -1101,7 +1101,7 @@ free_device_info:
1101 1101
1102static struct platform_driver ab8500_btemp_driver = { 1102static struct platform_driver ab8500_btemp_driver = {
1103 .probe = ab8500_btemp_probe, 1103 .probe = ab8500_btemp_probe,
1104 .remove = __devexit_p(ab8500_btemp_remove), 1104 .remove = ab8500_btemp_remove,
1105 .suspend = ab8500_btemp_suspend, 1105 .suspend = ab8500_btemp_suspend,
1106 .resume = ab8500_btemp_resume, 1106 .resume = ab8500_btemp_resume,
1107 .driver = { 1107 .driver = {