Skip to content

Commit

Permalink
Merge branch 'board' of git://github.com/hzhuang1/linux into next/cle…
Browse files Browse the repository at this point in the history
…anup

* 'board' of git://github.com/hzhuang1/linux:
  ARM: mmp: using for_each_set_bit to simplify the code
  • Loading branch information
Olof Johansson committed Sep 22, 2012
2 parents b97ba3a + 93d429a commit 60e5992
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions arch/arm/mach-mmp/irq.c
Original file line number Diff line number Diff line change
Expand Up @@ -153,10 +153,8 @@ static void icu_mux_irq_demux(unsigned int irq, struct irq_desc *desc)
status = readl_relaxed(data->reg_status) & ~mask;
if (status == 0)
break;
n = find_first_bit(&status, BITS_PER_LONG);
while (n < BITS_PER_LONG) {
for_each_set_bit(n, &status, BITS_PER_LONG) {
generic_handle_irq(icu_data[i].virq_base + n);
n = find_next_bit(&status, BITS_PER_LONG, n + 1);
}
}
}
Expand Down

0 comments on commit 60e5992

Please sign in to comment.