The patch titled
provide stubs for enable_irq_wake() and disable_irq_wake()
has been added to the -mm tree. Its filename is
provide-stubs-for-enable_irq_wake-and-disable_irq_wake.patch
*** Remember to use Documentation/SubmitChecklist when testing your code ***
See http://www.zip.com.au/~akpm/linux/patches/stuff/added-to-mm.txt to find
out what to do about this
------------------------------------------------------
Subject: provide stubs for enable_irq_wake() and disable_irq_wake()
From: Guennadi Liakhovetski <[EMAIL PROTECTED]>
Provide {enable,disable}_irq_wakeup dummies for undefined
cross-compilers for platforms without CONFIG_GENERIC_IRQ.
Needed by wake-up-from-a-serial-port.patch
Signed-off-by: Guennadi Liakhovetski <[EMAIL PROTECTED]>
Cc: Thomas Gleixner <[EMAIL PROTECTED]>
Cc: Ingo Molnar <[EMAIL PROTECTED]>
Signed-off-by: Andrew Morton <[EMAIL PROTECTED]>
---
include/linux/interrupt.h | 3 +++
1 file changed, 3 insertions(+)
diff -puN
include/linux/interrupt.h~provide-stubs-for-enable_irq_wake-and-disable_irq_wake
include/linux/interrupt.h
---
a/include/linux/interrupt.h~provide-stubs-for-enable_irq_wake-and-disable_irq_wake
+++ a/include/linux/interrupt.h
@@ -205,6 +205,9 @@ static inline int disable_irq_wake(unsig
enable_irq(irq)
# endif
+#define enable_irq_wake(irq) ({ (void)(irq); 0; })
+#define disable_irq_wake(irq) ({ (void)(irq); 0; })
+
#endif /* CONFIG_GENERIC_HARDIRQS */
#ifndef __ARCH_SET_SOFTIRQ_PENDING
_
Patches currently in -mm which might be from [EMAIL PROTECTED] are
git-powerpc.patch
git-powerpc-galak.patch
provide-stubs-for-enable_irq_wake-and-disable_irq_wake.patch
wake-up-from-a-serial-port.patch
-
To unsubscribe from this list: send the line "unsubscribe mm-commits" in
the body of a message to [EMAIL PROTECTED]
More majordomo info at http://vger.kernel.org/majordomo-info.html