mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-11-24 21:40:54 +07:00
genirq: Fix typo and remove unused variable
Sigh, I'm overworked. Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
This commit is contained in:
parent
30398bf6c6
commit
a6aeddd1c4
@ -60,7 +60,6 @@ void move_masked_irq(int irq)
|
||||
|
||||
void irq_move_irq(struct irq_data *idata)
|
||||
{
|
||||
struct irq_desc *desc = irq_data_to_desc(idata);
|
||||
bool masked;
|
||||
|
||||
if (likely(!irqd_is_setaffinity_pending(idata)))
|
||||
|
@ -48,7 +48,7 @@ bool irq_wait_for_poll(struct irq_desc *desc)
|
||||
while (irqd_irq_inprogress(&desc->irq_data))
|
||||
cpu_relax();
|
||||
raw_spin_lock(&desc->lock);
|
||||
} while irqd_irq_inprogress(&desc->irq_data);
|
||||
} while (irqd_irq_inprogress(&desc->irq_data));
|
||||
/* Might have been disabled in meantime */
|
||||
return !irqd_irq_disabled(&desc->irq_data) && desc->action;
|
||||
#else
|
||||
|
Loading…
Reference in New Issue
Block a user