Skip to content

Commit

Permalink
genirq: Fix typo and remove unused variable
Browse files Browse the repository at this point in the history
Sigh, I'm overworked.

Signed-off-by: Thomas Gleixner <[email protected]>
  • Loading branch information
KAGA-KOKO committed Mar 28, 2011
1 parent 30398bf commit a6aeddd
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
1 change: 0 additions & 1 deletion kernel/irq/migration.c
Original file line number Diff line number Diff line change
Expand Up @@ -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)))
Expand Down
2 changes: 1 addition & 1 deletion kernel/irq/spurious.c
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit a6aeddd

Please sign in to comment.