diff options
-rw-r--r-- | include/linux/interrupt.h | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/include/linux/interrupt.h b/include/linux/interrupt.h index 5523f19d88d2..8e5f289052a2 100644 --- a/include/linux/interrupt.h +++ b/include/linux/interrupt.h | |||
@@ -205,6 +205,15 @@ static inline int disable_irq_wake(unsigned int irq) | |||
205 | enable_irq(irq) | 205 | enable_irq(irq) |
206 | # endif | 206 | # endif |
207 | 207 | ||
208 | static inline int enable_irq_wake(unsigned int irq) | ||
209 | { | ||
210 | return 0; | ||
211 | } | ||
212 | |||
213 | static inline int disable_irq_wake(unsigned int irq) | ||
214 | { | ||
215 | return 0; | ||
216 | } | ||
208 | #endif /* CONFIG_GENERIC_HARDIRQS */ | 217 | #endif /* CONFIG_GENERIC_HARDIRQS */ |
209 | 218 | ||
210 | #ifndef __ARCH_SET_SOFTIRQ_PENDING | 219 | #ifndef __ARCH_SET_SOFTIRQ_PENDING |