aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/pwm/pwm-tegra.c
diff options
context:
space:
mode:
Diffstat (limited to 'drivers/pwm/pwm-tegra.c')
-rw-r--r--drivers/pwm/pwm-tegra.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/pwm/pwm-tegra.c b/drivers/pwm/pwm-tegra.c
index 057465e0553c..30c0e2b70ce8 100644
--- a/drivers/pwm/pwm-tegra.c
+++ b/drivers/pwm/pwm-tegra.c
@@ -210,7 +210,7 @@ static int tegra_pwm_probe(struct platform_device *pdev)
210 return 0; 210 return 0;
211} 211}
212 212
213static int __devexit tegra_pwm_remove(struct platform_device *pdev) 213static int tegra_pwm_remove(struct platform_device *pdev)
214{ 214{
215 struct tegra_pwm_chip *pc = platform_get_drvdata(pdev); 215 struct tegra_pwm_chip *pc = platform_get_drvdata(pdev);
216 int i; 216 int i;
@@ -249,7 +249,7 @@ static struct platform_driver tegra_pwm_driver = {
249 .of_match_table = of_match_ptr(tegra_pwm_of_match), 249 .of_match_table = of_match_ptr(tegra_pwm_of_match),
250 }, 250 },
251 .probe = tegra_pwm_probe, 251 .probe = tegra_pwm_probe,
252 .remove = __devexit_p(tegra_pwm_remove), 252 .remove = tegra_pwm_remove,
253}; 253};
254 254
255module_platform_driver(tegra_pwm_driver); 255module_platform_driver(tegra_pwm_driver);