[<prev] [next>] [day] [month] [year] [list]
Message-ID: <175883599938.709179.9060884439995069517.tip-bot2@tip-bot2>
Date: Thu, 25 Sep 2025 21:33:19 -0000
From: "tip-bot2 for Daniel Lezcano" <tip-bot2@...utronix.de>
To: linux-tip-commits@...r.kernel.org
Cc: Daniel Lezcano <daniel.lezcano@...aro.org>, x86@...nel.org,
linux-kernel@...r.kernel.org
Subject: [tip: timers/clocksource] clocksource/drivers/vf-pit: Unify the
function name for irq ack
The following commit has been merged into the timers/clocksource branch of tip:
Commit-ID: 3c34321e9b5965fdbf51fd407a35322a64c9e9c6
Gitweb: https://git.kernel.org/tip/3c34321e9b5965fdbf51fd407a35322a64c9e9c6
Author: Daniel Lezcano <daniel.lezcano@...aro.org>
AuthorDate: Mon, 04 Aug 2025 17:23:35 +02:00
Committer: Daniel Lezcano <daniel.lezcano@...aro.org>
CommitterDate: Tue, 23 Sep 2025 12:30:00 +02:00
clocksource/drivers/vf-pit: Unify the function name for irq ack
Most the function are under the form pit_timer_*, let's change the
interrupt acknowledgment function name to have the same format.
No functional changes intended.
Signed-off-by: Daniel Lezcano <daniel.lezcano@...aro.org>
Link: https://lore.kernel.org/r/20250804152344.1109310-18-daniel.lezcano@linaro.org
---
drivers/clocksource/timer-vf-pit.c | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/drivers/clocksource/timer-vf-pit.c b/drivers/clocksource/timer-vf-pit.c
index 3825159..2a0ee41 100644
--- a/drivers/clocksource/timer-vf-pit.c
+++ b/drivers/clocksource/timer-vf-pit.c
@@ -81,7 +81,7 @@ static inline void pit_timer_set_counter(void __iomem *base, unsigned int cnt)
writel(cnt, PITLDVAL(base));
}
-static inline void pit_irq_acknowledge(struct pit_timer *pit)
+static inline void pit_timer_irqack(struct pit_timer *pit)
{
writel(PITTFLG_TIF, PITTFLG(pit->clkevt_base));
}
@@ -165,7 +165,7 @@ static irqreturn_t pit_timer_interrupt(int irq, void *dev_id)
struct clock_event_device *ced = dev_id;
struct pit_timer *pit = ced_to_pit(ced);
- pit_irq_acknowledge(pit);
+ pit_timer_irqack(pit);
/*
* pit hardware doesn't support oneshot, it will generate an interrupt
@@ -195,7 +195,7 @@ static int __init pit_clockevent_init(struct pit_timer *pit, const char *name,
pit_timer_disable(pit->clkevt_base);
- pit_irq_acknowledge(pit);
+ pit_timer_irqack(pit);
BUG_ON(request_irq(irq, pit_timer_interrupt, IRQF_TIMER | IRQF_IRQPOLL,
name, &pit->ced));
Powered by blists - more mailing lists