Commit ab33dcff40d7a9a28587e4425621e4cbc4089e03

Authored by Randy Dunlap
Committed by Ingo Molnar
1 parent 39a2eddb9b

genirq, irq.h: Fix kernel-doc warnings

Fix kernel-doc warnings in linux/irq.h:

  Warning(include/linux/irq.h:201): No description found for parameter 'node'
  Warning(include/linux/irq.h:201): Excess struct/union/enum/typedef member 'cpu' description in 'irq_desc'
  Warning(include/linux/irq.h:434): No description found for parameter 'node'
  Warning(include/linux/irq.h:434): Excess function parameter 'cpu' description in 'alloc_desc_masks'

Signed-off-by: Randy Dunlap <randy.dunlap@oracle.com>
LKML-Reference: <4A3467EC.50006@oracle.com>
Signed-off-by: Ingo Molnar <mingo@elte.hu>

Showing 1 changed file with 2 additions and 2 deletions Side-by-side Diff

... ... @@ -157,7 +157,7 @@
157 157 * @irqs_unhandled: stats field for spurious unhandled interrupts
158 158 * @lock: locking for SMP
159 159 * @affinity: IRQ affinity on SMP
160   - * @cpu: cpu index useful for balancing
  160 + * @node: node index useful for balancing
161 161 * @pending_mask: pending rebalanced interrupts
162 162 * @threads_active: number of irqaction threads currently running
163 163 * @wait_for_threads: wait queue for sync_irq to wait for threaded handlers
... ... @@ -426,7 +426,7 @@
426 426 /**
427 427 * init_alloc_desc_masks - allocate cpumasks for irq_desc
428 428 * @desc: pointer to irq_desc struct
429   - * @cpu: cpu which will be handling the cpumasks
  429 + * @node: node which will be handling the cpumasks
430 430 * @boot: true if need bootmem
431 431 *
432 432 * Allocates affinity and pending_mask cpumask if required.