提交 93d429a7 编写于 作者: W Wei Yongjun 提交者: Haojian Zhuang

ARM: mmp: using for_each_set_bit to simplify the code

Using for_each_set_bit() to simplify the code.

spatch with a semantic match is used to found this.
(http://coccinelle.lip6.fr/)
Signed-off-by: NWei Yongjun <yongjun_wei@trendmicro.com.cn>
Signed-off-by: NHaojian Zhuang <haojian.zhuang@gmail.com>
上级 5698bd75
...@@ -153,10 +153,8 @@ static void icu_mux_irq_demux(unsigned int irq, struct irq_desc *desc) ...@@ -153,10 +153,8 @@ static void icu_mux_irq_demux(unsigned int irq, struct irq_desc *desc)
status = readl_relaxed(data->reg_status) & ~mask; status = readl_relaxed(data->reg_status) & ~mask;
if (status == 0) if (status == 0)
break; break;
n = find_first_bit(&status, BITS_PER_LONG); for_each_set_bit(n, &status, BITS_PER_LONG) {
while (n < BITS_PER_LONG) {
generic_handle_irq(icu_data[i].virq_base + n); generic_handle_irq(icu_data[i].virq_base + n);
n = find_next_bit(&status, BITS_PER_LONG, n + 1);
} }
} }
} }
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册