diff options
author | 2025-01-10 22:29:54 -0800 | |
---|---|---|
committer | 2025-01-15 21:38:53 +0100 | |
commit | 554d0fee8a5b09e79ec17a9c3867d4d7b7a818c0 (patch) | |
tree | e54ab3c42f0a24dceca657a2483b9aad79328f6d | |
parent | genirq: Remove IRQ_MOVE_PCNTXT and related code (diff) | |
download | wireguard-linux-554d0fee8a5b09e79ec17a9c3867d4d7b7a818c0.tar.xz wireguard-linux-554d0fee8a5b09e79ec17a9c3867d4d7b7a818c0.zip |
genirq/timings: Add kernel-doc for a function parameter
Add the description for @now to eliminate a kernel-doc warning.
timings.c:537: warning: Function parameter or struct member 'now' not described in 'irq_timings_next_event'
Signed-off-by: Randy Dunlap <rdunlap@infradead.org>
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Link: https://lore.kernel.org/all/20250111062954.910657-1-rdunlap@infradead.org
-rw-r--r-- | kernel/irq/timings.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/kernel/irq/timings.c b/kernel/irq/timings.c index c43e2ac2f8de..4b7315e99bd6 100644 --- a/kernel/irq/timings.c +++ b/kernel/irq/timings.c @@ -509,6 +509,7 @@ static inline void irq_timings_store(int irq, struct irqt_stat *irqs, u64 ts) /** * irq_timings_next_event - Return when the next event is supposed to arrive + * @now: current time * * During the last busy cycle, the number of interrupts is incremented * and stored in the irq_timings structure. This information is |