[<prev] [next>] [day] [month] [year] [list]
Message-Id: <20241107074619.2714-1-tangbin@cmss.chinamobile.com>
Date: Thu, 7 Nov 2024 15:46:19 +0800
From: Tang Bin <tangbin@...s.chinamobile.com>
To: verdun@....com,
nick.hawkins@....com,
daniel.lezcano@...aro.org,
tglx@...utronix.de
Cc: linux-kernel@...r.kernel.org,
Tang Bin <tangbin@...s.chinamobile.com>
Subject: [PATCH] clocksource: Remove redundant casts
In the function gxp_timer_init, the 'int' type cast
in front of the PTR_ERR() macro is redundant, thus
remove it.
Signed-off-by: Tang Bin <tangbin@...s.chinamobile.com>
---
drivers/clocksource/timer-gxp.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/drivers/clocksource/timer-gxp.c b/drivers/clocksource/timer-gxp.c
index 57aa2e2cc..48a73c101 100644
--- a/drivers/clocksource/timer-gxp.c
+++ b/drivers/clocksource/timer-gxp.c
@@ -85,7 +85,7 @@ static int __init gxp_timer_init(struct device_node *node)
clk = of_clk_get(node, 0);
if (IS_ERR(clk)) {
- ret = (int)PTR_ERR(clk);
+ ret = PTR_ERR(clk);
pr_err("%pOFn clock not found: %d\n", node, ret);
goto err_free;
}
--
2.33.0
Powered by blists - more mailing lists