Skip to content

Commit d87e89c

Browse files
vincenzopalazzoIngo Molnar
authored andcommitted
x86/irq/i8259: Fix kernel-doc annotation warning
Fix this warning: arch/x86/kernel/i8259.c:235: warning: This comment starts with '/**', but isn't a kernel-doc comment. Refer Documentation/doc-guide/kernel-doc.rst * ELCR registers (0x4d0, 0x4d1) control edge/level of IRQ CC arch/x86/kernel/irqinit.o Signed-off-by: Vincenzo Palazzo <[email protected]> Signed-off-by: Ingo Molnar <[email protected]> Link: https://lore.kernel.org/r/[email protected]
1 parent c9f4c45 commit d87e89c

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

arch/x86/kernel/i8259.c

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -231,9 +231,7 @@ struct irq_chip i8259A_chip = {
231231
};
232232

233233
static char irq_trigger[2];
234-
/**
235-
* ELCR registers (0x4d0, 0x4d1) control edge/level of IRQ
236-
*/
234+
/* ELCR registers (0x4d0, 0x4d1) control edge/level of IRQ */
237235
static void restore_ELCR(char *trigger)
238236
{
239237
outb(trigger[0], PIC_ELCR1);

0 commit comments

Comments
 (0)