aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/clocksource
diff options
context:
space:
mode:
authorDan Carpenter <dan.carpenter@oracle.com>2022-05-19 16:58:23 +0300
committerDaniel Lezcano <daniel.lezcano@linaro.org>2022-05-24 09:16:29 +0200
commit8c0d9461ab760439b09ae321803ee85df1136e08 (patch)
tree9226b8b8c883189ec3cb872c6d582f6c87e29992 /drivers/clocksource
parentclocksource/drivers/timer-sun5i: Convert to SPDX identifier (diff)
downloadlinux-dev-8c0d9461ab760439b09ae321803ee85df1136e08.tar.xz
linux-dev-8c0d9461ab760439b09ae321803ee85df1136e08.zip
clocksource/drivers/timer-ti-dm: Remove unnecessary NULL check
The "pdata" pointer cannot be NULL because it's checked at the start of the function. Delete the check. Signed-off-by: Dan Carpenter <dan.carpenter@oracle.com> Link: https://lore.kernel.org/r/YoZM65RFDQAfqV6J@kili Signed-off-by: Daniel Lezcano <daniel.lezcano@linaro.org>
Diffstat (limited to 'drivers/clocksource')
-rw-r--r--drivers/clocksource/timer-ti-dm.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/drivers/clocksource/timer-ti-dm.c b/drivers/clocksource/timer-ti-dm.c
index 3e52c5226c4d..33609be0b304 100644
--- a/drivers/clocksource/timer-ti-dm.c
+++ b/drivers/clocksource/timer-ti-dm.c
@@ -828,8 +828,7 @@ static int omap_dm_timer_probe(struct platform_device *pdev)
cpu_pm_register_notifier(&timer->nb);
}
- if (pdata)
- timer->errata = pdata->timer_errata;
+ timer->errata = pdata->timer_errata;
timer->pdev = pdev;