[tip: x86/urgent] x86/irq/i8259: Fix kernel-doc annotation warning

From: tip-bot2 for Vincenzo Palazzo
Date: Thu Aug 31 2023 - 14:52:54 EST


The following commit has been merged into the x86/urgent branch of tip:

Commit-ID: d87e89c2735772fbed933be0d19e032c1910a51f
Gitweb: https://git.kernel.org/tip/d87e89c2735772fbed933be0d19e032c1910a51f
Author: Vincenzo Palazzo <vincenzopalazzodev@xxxxxxxxx>
AuthorDate: Wed, 30 Aug 2023 15:12:09 +02:00
Committer: Ingo Molnar <mingo@xxxxxxxxxx>
CommitterDate: Thu, 31 Aug 2023 20:43:30 +02:00

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 <vincenzopalazzodev@xxxxxxxxx>
Signed-off-by: Ingo Molnar <mingo@xxxxxxxxxx>
Link: https://lore.kernel.org/r/20230830131211.88226-1-vincenzopalazzodev@xxxxxxxxx
---
arch/x86/kernel/i8259.c | 4 +---
1 file changed, 1 insertion(+), 3 deletions(-)

diff --git a/arch/x86/kernel/i8259.c b/arch/x86/kernel/i8259.c
index 4d8aff0..30a5520 100644
--- a/arch/x86/kernel/i8259.c
+++ b/arch/x86/kernel/i8259.c
@@ -231,9 +231,7 @@ struct irq_chip i8259A_chip = {
};

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