aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSebastian Frias <sf84@laposte.net>2016-08-02 04:52:45 -0400
committerThomas Gleixner <tglx@linutronix.de>2016-09-02 12:06:50 -0400
commit0c228919e04ddec195402296e7ebf2472ed6caef (patch)
tree2d59bba00123cf7351199c79d32f8d9323fb6579
parentee26c013cdee0b947e29d6cadfb9ff3341c69ff9 (diff)
irqdomain: Mask irq type in irq_domain_xlate_onetwocell()
According to the xlate() callback definition, the 'out_type' parameter needs to be the "linux irq type". A mask for such bits exists, IRQ_TYPE_SENSE_MASK, which is correctly applied in irq_domain_xlate_twocell() So use it for irq_domain_xlate_onetwocell() as well. Signed-off-by: Sebastian Frias <sf84@laposte.net> Cc: Grant Likely <grant.likely@secretlab.ca> Cc: Marc Zyngier <marc.zyngier@arm.com> Cc: Mason <slash.tmp@free.fr> Cc: Jason Cooper <jason@lakedaemon.net> Link: http://lkml.kernel.org/r/57A05F5D.103@laposte.net Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
-rw-r--r--kernel/irq/irqdomain.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/kernel/irq/irqdomain.c b/kernel/irq/irqdomain.c
index 4752b43662e0..f10cffe8aefb 100644
--- a/kernel/irq/irqdomain.c
+++ b/kernel/irq/irqdomain.c
@@ -868,7 +868,10 @@ int irq_domain_xlate_onetwocell(struct irq_domain *d,
868 if (WARN_ON(intsize < 1)) 868 if (WARN_ON(intsize < 1))
869 return -EINVAL; 869 return -EINVAL;
870 *out_hwirq = intspec[0]; 870 *out_hwirq = intspec[0];
871 *out_type = (intsize > 1) ? intspec[1] : IRQ_TYPE_NONE; 871 if (intsize > 1)
872 *out_type = intspec[1] & IRQ_TYPE_SENSE_MASK;
873 else
874 *out_type = IRQ_TYPE_NONE;
872 return 0; 875 return 0;
873} 876}
874EXPORT_SYMBOL_GPL(irq_domain_xlate_onetwocell); 877EXPORT_SYMBOL_GPL(irq_domain_xlate_onetwocell);