* [PATCH] clocksource: Remove unnecessary (void*) conversions
@ 2022-08-09 2:18 Li zeming
0 siblings, 0 replies; only message in thread
From: Li zeming @ 2022-08-09 2:18 UTC (permalink / raw)
To: daniel.lezcano, tglx, narmstrong, khilman, jbrunet,
martin.blumenstingl
Cc: linux-kernel, linux-arm-kernel, linux-amlogic, Li zeming
Remove unnecessary void* type castings.
Signed-off-by: Li zeming <zeming@nfschina.com>
---
drivers/clocksource/timer-meson6.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/drivers/clocksource/timer-meson6.c b/drivers/clocksource/timer-meson6.c
index 99f5510a2b56..83dcd167e204 100644
--- a/drivers/clocksource/timer-meson6.c
+++ b/drivers/clocksource/timer-meson6.c
@@ -143,7 +143,7 @@ static struct clock_event_device meson6_clockevent = {
static irqreturn_t meson6_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;
evt->event_handler(evt);
--
2.18.2
_______________________________________________
linux-amlogic mailing list
linux-amlogic@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-amlogic
^ permalink raw reply related [flat|nested] only message in thread
only message in thread, other threads:[~2022-08-09 2:19 UTC | newest]
Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2022-08-09 2:18 [PATCH] clocksource: Remove unnecessary (void*) conversions Li zeming
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox