[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Message-Id: <20220720020735.3771-1-xupengfei@nfschina.com>
Date: Wed, 20 Jul 2022 10:07:35 +0800
From: XU pengfei <xupengfei@...china.com>
To: daniel.lezcano@...aro.org, tglx@...utronix.de, wens@...e.org,
jernej.skrabec@...il.com, samuel@...lland.org
Cc: linux-kernel@...r.kernel.org, linux-arm-kernel@...ts.infradead.org,
linux-sunxi@...ts.linux.dev, XU pengfei <xupengfei@...china.com>
Subject: [PATCH 1/1] clocksource/drivers/sun4i: remove unnecessary (void*) conversions
remove unnecessary void* type casting.
Signed-off-by: XU pengfei <xupengfei@...china.com>
---
drivers/clocksource/timer-sun4i.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/drivers/clocksource/timer-sun4i.c b/drivers/clocksource/timer-sun4i.c
index bb6ea6c19829..94dc6e42e983 100644
--- a/drivers/clocksource/timer-sun4i.c
+++ b/drivers/clocksource/timer-sun4i.c
@@ -128,7 +128,7 @@ static void sun4i_timer_clear_interrupt(void __iomem *base)
static irqreturn_t sun4i_timer_interrupt(int irq, void *dev_id)
{
- struct clock_event_device *evt = (struct clock_event_device *)dev_id;
+ struct clock_event_device *evt = dev_id;
struct timer_of *to = to_timer_of(evt);
sun4i_timer_clear_interrupt(timer_of_base(to));
--
2.18.2
Powered by blists - more mailing lists