]> git.karo-electronics.de Git - karo-tx-linux.git/blobdiff - kernel/irq/handle.c
Merge branch 'stable-3.18' of git://git.infradead.org/users/pcmoore/selinux into...
[karo-tx-linux.git] / kernel / irq / handle.c
index 131ca176b4973c9b5f40ff8aa1ab471587ac71ae..635480270858448064b1afa54bf616f074744d60 100644 (file)
@@ -41,6 +41,7 @@ irqreturn_t no_action(int cpl, void *dev_id)
 {
        return IRQ_NONE;
 }
+EXPORT_SYMBOL_GPL(no_action);
 
 static void warn_no_thread(unsigned int irq, struct irqaction *action)
 {
@@ -51,7 +52,7 @@ static void warn_no_thread(unsigned int irq, struct irqaction *action)
               "but no thread function available.", irq, action->name);
 }
 
-static void irq_wake_thread(struct irq_desc *desc, struct irqaction *action)
+void __irq_wake_thread(struct irq_desc *desc, struct irqaction *action)
 {
        /*
         * In case the thread crashed and was killed we just pretend that
@@ -157,7 +158,7 @@ handle_irq_event_percpu(struct irq_desc *desc, struct irqaction *action)
                                break;
                        }
 
-                       irq_wake_thread(desc, action);
+                       __irq_wake_thread(desc, action);
 
                        /* Fall through to add to randomness */
                case IRQ_HANDLED: