From: Tang Bin Date: Thu, 7 Nov 2024 07:46:19 +0000 (+0800) Subject: clocksource/drivers/gpx: Remove redundant casts X-Git-Tag: v6.13-rc1~171^2~1^2~1 X-Git-Url: https://www.infradead.org/git/?a=commitdiff_plain;h=5569d7348b4a927eb5a2449ddc175ec7c3930c4d;p=linux.git clocksource/drivers/gpx: 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 Link: https://lore.kernel.org/r/20241107074619.2714-1-tangbin@cmss.chinamobile.com Signed-off-by: Daniel Lezcano --- diff --git a/drivers/clocksource/timer-gxp.c b/drivers/clocksource/timer-gxp.c index 57aa2e2cce53..48a73c101eb8 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; }