diff options
author | Linus Torvalds <torvalds@linux-foundation.org> | 2014-05-20 01:18:04 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2014-05-20 01:18:04 -0400 |
commit | 3f017a4ca2de0a87767ab047b2bd2f3f11e87a9e (patch) | |
tree | 150789c3c0e0b443815e4a5bd56f8543c085207b | |
parent | 14186fea0cb06bc43181ce239efe0df6f1af260a (diff) | |
parent | 2ed9fd28c2884e9f41c133f86a7e377d7c0a96bf (diff) |
Merge branch 'irq-urgent-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip
Pull irq fixes from Thomas Gleixner:
"Two small updates from the irq departement:
- Provide missing inline stub for a SMP only function
- Add sub-maintainer for the drivers/irqchip/ part of the irq
subsystem. YAY!"
* 'irq-urgent-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip:
MAINTAINERS: Add co-maintainer for drivers/irqchip
genirq: Provide irq_force_affinity fallback for non-SMP
-rw-r--r-- | MAINTAINERS | 8 | ||||
-rw-r--r-- | include/linux/interrupt.h | 5 |
2 files changed, 13 insertions, 0 deletions
diff --git a/MAINTAINERS b/MAINTAINERS index c596b74b29d5..fa1b13996bd3 100644 --- a/MAINTAINERS +++ b/MAINTAINERS | |||
@@ -4819,6 +4819,14 @@ L: linux-kernel@vger.kernel.org | |||
4819 | S: Maintained | 4819 | S: Maintained |
4820 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core | 4820 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core |
4821 | F: kernel/irq/ | 4821 | F: kernel/irq/ |
4822 | |||
4823 | IRQCHIP DRIVERS | ||
4824 | M: Thomas Gleixner <tglx@linutronix.de> | ||
4825 | M: Jason Cooper <jason@lakedaemon.net> | ||
4826 | L: linux-kernel@vger.kernel.org | ||
4827 | S: Maintained | ||
4828 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core | ||
4829 | T: git git://git.infradead.org/users/jcooper/linux.git irqchip/core | ||
4822 | F: drivers/irqchip/ | 4830 | F: drivers/irqchip/ |
4823 | 4831 | ||
4824 | IRQ DOMAINS (IRQ NUMBER MAPPING LIBRARY) | 4832 | IRQ DOMAINS (IRQ NUMBER MAPPING LIBRARY) |
diff --git a/include/linux/interrupt.h b/include/linux/interrupt.h index 97ac926c78a7..051c85032f48 100644 --- a/include/linux/interrupt.h +++ b/include/linux/interrupt.h | |||
@@ -272,6 +272,11 @@ static inline int irq_set_affinity(unsigned int irq, const struct cpumask *m) | |||
272 | return -EINVAL; | 272 | return -EINVAL; |
273 | } | 273 | } |
274 | 274 | ||
275 | static inline int irq_force_affinity(unsigned int irq, const struct cpumask *cpumask) | ||
276 | { | ||
277 | return 0; | ||
278 | } | ||
279 | |||
275 | static inline int irq_can_set_affinity(unsigned int irq) | 280 | static inline int irq_can_set_affinity(unsigned int irq) |
276 | { | 281 | { |
277 | return 0; | 282 | return 0; |