diff options
Diffstat (limited to 'drivers/pwm/pwm-tiehrpwm.c')
-rw-r--r-- | drivers/pwm/pwm-tiehrpwm.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/drivers/pwm/pwm-tiehrpwm.c b/drivers/pwm/pwm-tiehrpwm.c index d3c1dff0a0dc..9ffd389d0c8b 100644 --- a/drivers/pwm/pwm-tiehrpwm.c +++ b/drivers/pwm/pwm-tiehrpwm.c | |||
@@ -392,7 +392,7 @@ static const struct pwm_ops ehrpwm_pwm_ops = { | |||
392 | .owner = THIS_MODULE, | 392 | .owner = THIS_MODULE, |
393 | }; | 393 | }; |
394 | 394 | ||
395 | static int __devinit ehrpwm_pwm_probe(struct platform_device *pdev) | 395 | static int ehrpwm_pwm_probe(struct platform_device *pdev) |
396 | { | 396 | { |
397 | int ret; | 397 | int ret; |
398 | struct resource *r; | 398 | struct resource *r; |
@@ -443,7 +443,7 @@ static int __devinit ehrpwm_pwm_probe(struct platform_device *pdev) | |||
443 | return 0; | 443 | return 0; |
444 | } | 444 | } |
445 | 445 | ||
446 | static int __devexit ehrpwm_pwm_remove(struct platform_device *pdev) | 446 | static int ehrpwm_pwm_remove(struct platform_device *pdev) |
447 | { | 447 | { |
448 | struct ehrpwm_pwm_chip *pc = platform_get_drvdata(pdev); | 448 | struct ehrpwm_pwm_chip *pc = platform_get_drvdata(pdev); |
449 | 449 | ||
@@ -457,7 +457,7 @@ static struct platform_driver ehrpwm_pwm_driver = { | |||
457 | .name = "ehrpwm", | 457 | .name = "ehrpwm", |
458 | }, | 458 | }, |
459 | .probe = ehrpwm_pwm_probe, | 459 | .probe = ehrpwm_pwm_probe, |
460 | .remove = __devexit_p(ehrpwm_pwm_remove), | 460 | .remove = ehrpwm_pwm_remove, |
461 | }; | 461 | }; |
462 | 462 | ||
463 | module_platform_driver(ehrpwm_pwm_driver); | 463 | module_platform_driver(ehrpwm_pwm_driver); |