linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] irq: Export symbol no_action()
@ 2014-03-01  6:45 Alexander Shiyan
  2014-03-04 11:05 ` Thomas Gleixner
  0 siblings, 1 reply; 6+ messages in thread
From: Alexander Shiyan @ 2014-03-01  6:45 UTC (permalink / raw)
  To: linux-kernel; +Cc: Thomas Gleixner, Mark Brown, Alexander Shiyan

This will allow to use dummy IRQ handler no_action() from
drivers compiled as module. For example, dummy handler is could
be used for drivers that use ARM FIQ interrupts.

Signed-off-by: Alexander Shiyan <shc_work@mail.ru>
---
 kernel/irq/handle.c | 1 +
 1 file changed, 1 insertion(+)

diff --git a/kernel/irq/handle.c b/kernel/irq/handle.c
index bfec453..e8ddcbf 100644
--- a/kernel/irq/handle.c
+++ b/kernel/irq/handle.c
@@ -41,6 +41,7 @@ irqreturn_t no_action(int cpl, void *dev_id)
 {
 	return IRQ_NONE;
 }
+EXPORT_SYMBOL(no_action);
 
 static void warn_no_thread(unsigned int irq, struct irqaction *action)
 {
-- 
1.8.3.2


^ permalink raw reply related	[flat|nested] 6+ messages in thread

end of thread, other threads:[~2014-03-04 18:56 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2014-03-01  6:45 [PATCH] irq: Export symbol no_action() Alexander Shiyan
2014-03-04 11:05 ` Thomas Gleixner
2014-03-04 11:15   ` Alexander Shiyan
2014-03-04 15:46     ` Thomas Gleixner
2014-03-04 17:53       ` Alexander Shiyan
2014-03-04 18:56         ` Thomas Gleixner

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).