aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLinus Torvalds <torvalds@linux-foundation.org>2014-05-20 01:18:04 -0400
committerLinus Torvalds <torvalds@linux-foundation.org>2014-05-20 01:18:04 -0400
commit3f017a4ca2de0a87767ab047b2bd2f3f11e87a9e (patch)
tree150789c3c0e0b443815e4a5bd56f8543c085207b
parent14186fea0cb06bc43181ce239efe0df6f1af260a (diff)
parent2ed9fd28c2884e9f41c133f86a7e377d7c0a96bf (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--MAINTAINERS8
-rw-r--r--include/linux/interrupt.h5
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
4819S: Maintained 4819S: Maintained
4820T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core 4820T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core
4821F: kernel/irq/ 4821F: kernel/irq/
4822
4823IRQCHIP DRIVERS
4824M: Thomas Gleixner <tglx@linutronix.de>
4825M: Jason Cooper <jason@lakedaemon.net>
4826L: linux-kernel@vger.kernel.org
4827S: Maintained
4828T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core
4829T: git git://git.infradead.org/users/jcooper/linux.git irqchip/core
4822F: drivers/irqchip/ 4830F: drivers/irqchip/
4823 4831
4824IRQ DOMAINS (IRQ NUMBER MAPPING LIBRARY) 4832IRQ 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
275static inline int irq_force_affinity(unsigned int irq, const struct cpumask *cpumask)
276{
277 return 0;
278}
279
275static inline int irq_can_set_affinity(unsigned int irq) 280static inline int irq_can_set_affinity(unsigned int irq)
276{ 281{
277 return 0; 282 return 0;