aboutsummaryrefslogtreecommitdiffstats
path: root/kernel/irq/internals.h
diff options
context:
space:
mode:
authorJiang Liu <jiang.liu@linux.intel.com>2015-06-23 13:47:29 -0400
committerThomas Gleixner <tglx@linutronix.de>2015-07-11 17:14:24 -0400
commita1ff541a40e90df05f586bf6b157083b351c4a0c (patch)
treed35b764ca2dc369848efa5d08c43f3fe04e93fe7 /kernel/irq/internals.h
parent0798abeb7eec37dcc20f252c2195fc31c41561f9 (diff)
genirq: Remove irq arg from __irq_set_trigger()
It's only required for debug output and can be retrieved from the irq descriptor if necessary. [ tglx: Split out from combo patch ] Signed-off-by: Jiang Liu <jiang.liu@linux.intel.com> Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Diffstat (limited to 'kernel/irq/internals.h')
-rw-r--r--kernel/irq/internals.h3
1 files changed, 1 insertions, 2 deletions
diff --git a/kernel/irq/internals.h b/kernel/irq/internals.h
index 7054947e368e..429c5e34d619 100644
--- a/kernel/irq/internals.h
+++ b/kernel/irq/internals.h
@@ -59,8 +59,7 @@ enum {
59#include "debug.h" 59#include "debug.h"
60#include "settings.h" 60#include "settings.h"
61 61
62extern int __irq_set_trigger(struct irq_desc *desc, unsigned int irq, 62extern int __irq_set_trigger(struct irq_desc *desc, unsigned long flags);
63 unsigned long flags);
64extern void __disable_irq(struct irq_desc *desc, unsigned int irq); 63extern void __disable_irq(struct irq_desc *desc, unsigned int irq);
65extern void __enable_irq(struct irq_desc *desc, unsigned int irq); 64extern void __enable_irq(struct irq_desc *desc, unsigned int irq);
66 65