Commit 0798abeb authored by Jiang Liu's avatar Jiang Liu Committed by Thomas Gleixner

genirq: Remove the irq argument from check_irq_resend()

It's only used in the software resend case and can be retrieved from
irq_desc if necessary.
Signed-off-by: default avatarJiang Liu <jiang.liu@linux.intel.com>
Cc: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
Cc: Tony Luck <tony.luck@intel.com>
Cc: Bjorn Helgaas <bhelgaas@google.com>
Cc: Benjamin Herrenschmidt <benh@kernel.crashing.org>
Cc: Randy Dunlap <rdunlap@infradead.org>
Cc: Yinghai Lu <yinghai@kernel.org>
Cc: Borislav Petkov <bp@alien8.de>
Link: http://lkml.kernel.org/r/1433391238-19471-18-git-send-email-jiang.liu@linux.intel.comSigned-off-by: default avatarThomas Gleixner <tglx@linutronix.de>
parent b51bf95c
...@@ -187,7 +187,7 @@ int irq_startup(struct irq_desc *desc, bool resend) ...@@ -187,7 +187,7 @@ int irq_startup(struct irq_desc *desc, bool resend)
irq_enable(desc); irq_enable(desc);
} }
if (resend) if (resend)
check_irq_resend(desc, desc->irq_data.irq); check_irq_resend(desc);
return ret; return ret;
} }
......
...@@ -90,7 +90,7 @@ irqreturn_t handle_irq_event_percpu(struct irq_desc *desc, struct irqaction *act ...@@ -90,7 +90,7 @@ irqreturn_t handle_irq_event_percpu(struct irq_desc *desc, struct irqaction *act
irqreturn_t handle_irq_event(struct irq_desc *desc); irqreturn_t handle_irq_event(struct irq_desc *desc);
/* Resending of interrupts :*/ /* Resending of interrupts :*/
void check_irq_resend(struct irq_desc *desc, unsigned int irq); void check_irq_resend(struct irq_desc *desc);
bool irq_wait_for_poll(struct irq_desc *desc); bool irq_wait_for_poll(struct irq_desc *desc);
void __irq_wake_thread(struct irq_desc *desc, struct irqaction *action); void __irq_wake_thread(struct irq_desc *desc, struct irqaction *action);
......
...@@ -516,7 +516,7 @@ void __enable_irq(struct irq_desc *desc, unsigned int irq) ...@@ -516,7 +516,7 @@ void __enable_irq(struct irq_desc *desc, unsigned int irq)
/* Prevent probing on this irq: */ /* Prevent probing on this irq: */
irq_settings_set_noprobe(desc); irq_settings_set_noprobe(desc);
irq_enable(desc); irq_enable(desc);
check_irq_resend(desc, irq); check_irq_resend(desc);
/* fall-through */ /* fall-through */
} }
default: default:
......
...@@ -53,7 +53,7 @@ static DECLARE_TASKLET(resend_tasklet, resend_irqs, 0); ...@@ -53,7 +53,7 @@ static DECLARE_TASKLET(resend_tasklet, resend_irqs, 0);
* *
* Is called with interrupts disabled and desc->lock held. * Is called with interrupts disabled and desc->lock held.
*/ */
void check_irq_resend(struct irq_desc *desc, unsigned int irq) void check_irq_resend(struct irq_desc *desc)
{ {
/* /*
* We do not resend level type interrupts. Level type * We do not resend level type interrupts. Level type
...@@ -74,6 +74,8 @@ void check_irq_resend(struct irq_desc *desc, unsigned int irq) ...@@ -74,6 +74,8 @@ void check_irq_resend(struct irq_desc *desc, unsigned int irq)
if (!desc->irq_data.chip->irq_retrigger || if (!desc->irq_data.chip->irq_retrigger ||
!desc->irq_data.chip->irq_retrigger(&desc->irq_data)) { !desc->irq_data.chip->irq_retrigger(&desc->irq_data)) {
#ifdef CONFIG_HARDIRQS_SW_RESEND #ifdef CONFIG_HARDIRQS_SW_RESEND
unsigned int irq = irq_desc_get_irq(desc);
/* /*
* If the interrupt has a parent irq and runs * If the interrupt has a parent irq and runs
* in the thread context of the parent irq, * in the thread context of the parent irq,
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment