summaryrefslogtreecommitdiffstats
path: root/drivers/clocksource/sh_tmu.c
diff options
context:
space:
mode:
authorJingoo Han2013-12-03 07:50:09 +0100
committerDaniel Lezcano2013-12-11 11:40:26 +0100
commit5707f18c28f4df0f993d965aff1c168b69637d63 (patch)
tree6a3b1127dbc49d49f7ab5703eae63768cf96748d /drivers/clocksource/sh_tmu.c
parentclocksource: armada-370-xp: Enable timer divider only when needed (diff)
downloadkernel-qcow2-linux-5707f18c28f4df0f993d965aff1c168b69637d63.tar.gz
kernel-qcow2-linux-5707f18c28f4df0f993d965aff1c168b69637d63.tar.xz
kernel-qcow2-linux-5707f18c28f4df0f993d965aff1c168b69637d63.zip
clocksource: sh_tmu: Remove unnecessary platform_set_drvdata()
The driver core clears the driver data to NULL after device_release or on probe failure. Thus, it is not needed to manually clear the device driver data to NULL. Signed-off-by: Jingoo Han <jg1.han@samsung.com> Acked-by: Simon Horman <horms+renesas@verge.net.au> Signed-off-by: Daniel Lezcano <daniel.lezcano@linaro.org>
Diffstat (limited to 'drivers/clocksource/sh_tmu.c')
-rw-r--r--drivers/clocksource/sh_tmu.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/drivers/clocksource/sh_tmu.c b/drivers/clocksource/sh_tmu.c
index 78b8dae49628..54ab47553701 100644
--- a/drivers/clocksource/sh_tmu.c
+++ b/drivers/clocksource/sh_tmu.c
@@ -509,7 +509,6 @@ static int sh_tmu_probe(struct platform_device *pdev)
ret = sh_tmu_setup(p, pdev);
if (ret) {
kfree(p);
- platform_set_drvdata(pdev, NULL);
pm_runtime_idle(&pdev->dev);
return ret;
}