[PATCH] clocksource/drivers/timer-ti-dm: Remove unnecessary NULL check

From: Dan Carpenter
Date: Thu May 19 2022 - 10:02:24 EST


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@xxxxxxxxxx>
---
drivers/clocksource/timer-ti-dm.c | 3 +--
1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/drivers/clocksource/timer-ti-dm.c b/drivers/clocksource/timer-ti-dm.c
index f51d24301ff1..469f7c91564b 100644
--- a/drivers/clocksource/timer-ti-dm.c
+++ b/drivers/clocksource/timer-ti-dm.c
@@ -943,8 +943,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;

--
2.35.1