Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > linux.kernel > #1651382 > unrolled thread

[tip:x86/apic] x86/ioapic: Remove unused IO_APIC_irq_trigger() function

Started bytip-bot for Matthias Kaehlcke <tipbot@zytor.com>
First post2017-05-26 15:10 +0200
Last post2017-05-26 15:10 +0200
Articles 1 — 1 participant

Back to article view | Back to linux.kernel

This discussion starts older than the indexed window; earlier articles aren't shown. The article labeled Started by below is the oldest one visible, not the original post.


Contents

  [tip:x86/apic] x86/ioapic: Remove unused IO_APIC_irq_trigger()  function tip-bot for Matthias Kaehlcke <tipbot@zytor.com> - 2017-05-26 15:10 +0200

#1651382 — [tip:x86/apic] x86/ioapic: Remove unused IO_APIC_irq_trigger() function

Fromtip-bot for Matthias Kaehlcke <tipbot@zytor.com>
Date2017-05-26 15:10 +0200
Subject[tip:x86/apic] x86/ioapic: Remove unused IO_APIC_irq_trigger() function
Message-ID<tLnaa-6jc-27@gated-at.bofh.it>
Commit-ID:  9df8109fd7969b94ed2332ae828e0b08ae8cbf9a
Gitweb:     http://git.kernel.org/tip/9df8109fd7969b94ed2332ae828e0b08ae8cbf9a
Author:     Matthias Kaehlcke <mka@chromium.org>
AuthorDate: Mon, 22 May 2017 16:20:35 -0700
Committer:  Thomas Gleixner <tglx@linutronix.de>
CommitDate: Fri, 26 May 2017 14:37:41 +0200

x86/ioapic: Remove unused IO_APIC_irq_trigger() function

The function isn't used since commit:

  5ad274d41c1b ("x86/irq: Remove unused old IOAPIC irqdomain interfaces")

Removing it fixes the following warning when building with clang:

  arch/x86/kernel/apic/io_apic.c:1219:19: error: unused function
      'IO_APIC_irq_trigger' [-Werror,-Wunused-function]

Signed-off-by: Matthias Kaehlcke <mka@chromium.org>
Cc: Andrew Morton <akpm@linux-foundation.org>
Cc: Douglas Anderson <dianders@chromium.org>
Cc: Linus Torvalds <torvalds@linux-foundation.org>
Cc: Peter Zijlstra <peterz@infradead.org>
Cc: Thomas Gleixner <tglx@linutronix.de>
Link: http://lkml.kernel.org/r/20170522232035.187985-1-mka@chromium.org
Signed-off-by: Ingo Molnar <mingo@kernel.org>
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
---
 arch/x86/kernel/apic/io_apic.c | 22 ----------------------
 1 file changed, 22 deletions(-)

diff --git a/arch/x86/kernel/apic/io_apic.c b/arch/x86/kernel/apic/io_apic.c
index 347bb9f..247880f 100644
--- a/arch/x86/kernel/apic/io_apic.c
+++ b/arch/x86/kernel/apic/io_apic.c
@@ -1200,28 +1200,6 @@ EXPORT_SYMBOL(IO_APIC_get_PCI_irq_vector);
 
 static struct irq_chip ioapic_chip, ioapic_ir_chip;
 
-#ifdef CONFIG_X86_32
-static inline int IO_APIC_irq_trigger(int irq)
-{
-	int apic, idx, pin;
-
-	for_each_ioapic_pin(apic, pin) {
-		idx = find_irq_entry(apic, pin, mp_INT);
-		if ((idx != -1) && (irq == pin_2_irq(idx, apic, pin, 0)))
-			return irq_trigger(idx);
-	}
-	/*
-         * nonexistent IRQs are edge default
-         */
-	return 0;
-}
-#else
-static inline int IO_APIC_irq_trigger(int irq)
-{
-	return 1;
-}
-#endif
-
 static void __init setup_IO_APIC_irqs(void)
 {
 	unsigned int ioapic, pin;

[toc] | [standalone]


Back to top | Article view | linux.kernel


csiph-web