diff options
author | Thomas Gleixner <tglx@linutronix.de> | 2015-09-16 12:54:23 +0200 |
---|---|---|
committer | Thomas Gleixner <tglx@linutronix.de> | 2015-09-16 15:43:11 +0200 |
commit | 123236ccacc933daac3b39c5eb1f0011c70d41d8 (patch) | |
tree | 2a5852cc35b7123604b070beddb06a2aac1af217 /include | |
parent | 7c51173adde2ec520348812214704313f5b36f75 (diff) |
genirq: Remove __irq_set_handler_locked()
All users converted to irq_set_handler_locked()
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Diffstat (limited to 'include')
-rw-r--r-- | include/linux/irqdesc.h | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/include/linux/irqdesc.h b/include/linux/irqdesc.h index 29741382593c..dce395cd67de 100644 --- a/include/linux/irqdesc.h +++ b/include/linux/irqdesc.h @@ -174,16 +174,6 @@ static inline int irq_has_action(unsigned int irq) return irq_desc_has_action(irq_to_desc(irq)); } -/* caller has locked the irq_desc and both params are valid */ -static inline void __irq_set_handler_locked(unsigned int irq, - irq_flow_handler_t handler) -{ - struct irq_desc *desc; - - desc = irq_to_desc(irq); - desc->handle_irq = handler; -} - /** * irq_set_handler_locked - Set irq handler from a locked region * @data: Pointer to the irq_data structure which identifies the irq |