Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

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@linaro.org>
Link: https://lore.kernel.org/r/20250804152344.1109310-18-daniel.lezcano@linaro.org

+3 -3
+3 -3
drivers/clocksource/timer-vf-pit.c
··· 81 81 writel(cnt, PITLDVAL(base)); 82 82 } 83 83 84 - static inline void pit_irq_acknowledge(struct pit_timer *pit) 84 + static inline void pit_timer_irqack(struct pit_timer *pit) 85 85 { 86 86 writel(PITTFLG_TIF, PITTFLG(pit->clkevt_base)); 87 87 } ··· 165 165 struct clock_event_device *ced = dev_id; 166 166 struct pit_timer *pit = ced_to_pit(ced); 167 167 168 - pit_irq_acknowledge(pit); 168 + pit_timer_irqack(pit); 169 169 170 170 /* 171 171 * pit hardware doesn't support oneshot, it will generate an interrupt ··· 195 195 196 196 pit_timer_disable(pit->clkevt_base); 197 197 198 - pit_irq_acknowledge(pit); 198 + pit_timer_irqack(pit); 199 199 200 200 BUG_ON(request_irq(irq, pit_timer_interrupt, IRQF_TIMER | IRQF_IRQPOLL, 201 201 name, &pit->ced));