Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 60e59920 authored by Olof Johansson's avatar Olof Johansson
Browse files

Merge branch 'board' of git://github.com/hzhuang1/linux into next/cleanup

* 'board' of git://github.com/hzhuang1/linux:
  ARM: mmp: using for_each_set_bit to simplify the code
parents b97ba3ab 93d429a7
Loading
Loading
Loading
Loading
+1 −3
Original line number Original line Diff line number Diff line
@@ -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);
		}
		}
	}
	}
}
}