[tip: irq/core] genirq: Remove irq_chip_regs:: Polarity

From: tip-bot2 for Jiri Slaby (SUSE)
Date: Thu Aug 08 2024 - 11:22:44 EST


The following commit has been merged into the irq/core branch of tip:

Commit-ID: 60029162a0458832ab2bcfc6fd4986bfd9ca0f55
Gitweb: https://git.kernel.org/tip/60029162a0458832ab2bcfc6fd4986bfd9ca0f55
Author: Jiri Slaby (SUSE) <jirislaby@xxxxxxxxxx>
AuthorDate: Thu, 08 Aug 2024 12:41:18 +02:00
Committer: Thomas Gleixner <tglx@xxxxxxxxxxxxx>
CommitterDate: Thu, 08 Aug 2024 17:15:02 +02:00

genirq: Remove irq_chip_regs:: Polarity

The polarity member of struct irq_chip_regs is unused. Remove it along
with its kernel-doc.

Found by https://github.com/jirislaby/clang-struct.

Signed-off-by: Jiri Slaby (SUSE) <jirislaby@xxxxxxxxxx>
Signed-off-by: Thomas Gleixner <tglx@xxxxxxxxxxxxx>
Link: https://lore.kernel.org/all/20240808104118.430670-3-jirislaby@xxxxxxxxxx

---
include/linux/irq.h | 2 --
1 file changed, 2 deletions(-)

diff --git a/include/linux/irq.h b/include/linux/irq.h
index 00490d6..fa711f8 100644
--- a/include/linux/irq.h
+++ b/include/linux/irq.h
@@ -991,7 +991,6 @@ void irq_init_desc(unsigned int irq);
* @ack: Ack register offset to reg_base
* @eoi: Eoi register offset to reg_base
* @type: Type configuration register offset to reg_base
- * @polarity: Polarity configuration register offset to reg_base
*/
struct irq_chip_regs {
unsigned long enable;
@@ -1000,7 +999,6 @@ struct irq_chip_regs {
unsigned long ack;
unsigned long eoi;
unsigned long type;
- unsigned long polarity;
};

/**