[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <tip-9d67dc5da59d63f746aad8f6ec4fbb86d6486f76@git.kernel.org>
Date: Fri, 9 Oct 2015 08:21:34 -0700
From: tip-bot for Arnd Bergmann <tipbot@...or.com>
To: linux-tip-commits@...r.kernel.org
Cc: austin@...oton-tech.com, mingo@...nel.org, ssantosh@...nel.org,
grygorii.strashko@...com, arnd@...db.de, tony@...mide.com,
tglx@...utronix.de, hpa@...or.com, linus.walleij@...aro.org,
linux-kernel@...r.kernel.org
Subject: [tip:irq/urgent] genirq: Export handle_bad_irq
Commit-ID: 9d67dc5da59d63f746aad8f6ec4fbb86d6486f76
Gitweb: http://git.kernel.org/tip/9d67dc5da59d63f746aad8f6ec4fbb86d6486f76
Author: Arnd Bergmann <arnd@...db.de>
AuthorDate: Tue, 6 Oct 2015 22:24:50 +0200
Committer: Thomas Gleixner <tglx@...utronix.de>
CommitDate: Fri, 9 Oct 2015 17:17:30 +0200
genirq: Export handle_bad_irq
A cleanup of the omap gpio driver introduced a use of the
handle_bad_irq() function in a device driver that can be
a loadable module.
This broke the ARM allmodconfig build:
ERROR: "handle_bad_irq" [drivers/gpio/gpio-omap.ko] undefined!
This patch exports the handle_bad_irq symbol in order to
allow the use in modules.
Signed-off-by: Arnd Bergmann <arnd@...db.de>
Cc: Grygorii Strashko <grygorii.strashko@...com>
Cc: Santosh Shilimkar <ssantosh@...nel.org>
Cc: Linus Walleij <linus.walleij@...aro.org>
Cc: Austin Schuh <austin@...oton-tech.com>
Cc: Tony Lindgren <tony@...mide.com>
Cc: linux-arm-kernel@...ts.infradead.org
Link: http://lkml.kernel.org/r/5847725.4IBopItaOr@wuerfel
Signed-off-by: Thomas Gleixner <tglx@...utronix.de>
---
kernel/irq/handle.c | 1 +
1 file changed, 1 insertion(+)
diff --git a/kernel/irq/handle.c b/kernel/irq/handle.c
index de41a68..77983fc 100644
--- a/kernel/irq/handle.c
+++ b/kernel/irq/handle.c
@@ -35,6 +35,7 @@ void handle_bad_irq(struct irq_desc *desc)
kstat_incr_irqs_this_cpu(desc);
ack_bad_irq(irq);
}
+EXPORT_SYMBOL_GPL(handle_bad_irq);
/*
* Special, empty irq handler:
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists