aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/pwm/pwm-ab8500.c
diff options
context:
space:
mode:
Diffstat (limited to 'drivers/pwm/pwm-ab8500.c')
-rw-r--r--drivers/pwm/pwm-ab8500.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/drivers/pwm/pwm-ab8500.c b/drivers/pwm/pwm-ab8500.c
index cfb72ca873d1..4248d0418273 100644
--- a/drivers/pwm/pwm-ab8500.c
+++ b/drivers/pwm/pwm-ab8500.c
@@ -90,7 +90,7 @@ static const struct pwm_ops ab8500_pwm_ops = {
90 .disable = ab8500_pwm_disable, 90 .disable = ab8500_pwm_disable,
91}; 91};
92 92
93static int __devinit ab8500_pwm_probe(struct platform_device *pdev) 93static int ab8500_pwm_probe(struct platform_device *pdev)
94{ 94{
95 struct ab8500_pwm_chip *ab8500; 95 struct ab8500_pwm_chip *ab8500;
96 int err; 96 int err;
@@ -122,7 +122,7 @@ static int __devinit ab8500_pwm_probe(struct platform_device *pdev)
122 return 0; 122 return 0;
123} 123}
124 124
125static int __devexit ab8500_pwm_remove(struct platform_device *pdev) 125static int ab8500_pwm_remove(struct platform_device *pdev)
126{ 126{
127 struct ab8500_pwm_chip *ab8500 = platform_get_drvdata(pdev); 127 struct ab8500_pwm_chip *ab8500 = platform_get_drvdata(pdev);
128 int err; 128 int err;
@@ -143,7 +143,7 @@ static struct platform_driver ab8500_pwm_driver = {
143 .owner = THIS_MODULE, 143 .owner = THIS_MODULE,
144 }, 144 },
145 .probe = ab8500_pwm_probe, 145 .probe = ab8500_pwm_probe,
146 .remove = __devexit_p(ab8500_pwm_remove), 146 .remove = ab8500_pwm_remove,
147}; 147};
148module_platform_driver(ab8500_pwm_driver); 148module_platform_driver(ab8500_pwm_driver);
149 149