aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/pwm/pwm-tegra.c
diff options
context:
space:
mode:
authorIngo Molnar <mingo@kernel.org>2013-01-24 06:47:48 -0500
committerIngo Molnar <mingo@kernel.org>2013-01-24 06:47:48 -0500
commitbefddb21c845f8fb49e637997891ef97c6a869dc (patch)
tree0e7629123184f2dd50291ad6d477b894175f0f26 /drivers/pwm/pwm-tegra.c
parente716efde75267eab919cdb2bef5b2cb77f305326 (diff)
parent7d1f9aeff1ee4a20b1aeb377dd0f579fe9647619 (diff)
Merge tag 'v3.8-rc4' into irq/core
Merge Linux 3.8-rc4 before pulling in new commits - we were on an old v3.7 base. Signed-off-by: Ingo Molnar <mingo@kernel.org>
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);