forked from Minki/linux
net: ipa: Use 'for_each_clear_bit' when possible
Use 'for_each_clear_bit()' instead of hand writing it. It is much less version. Signed-off-by: Christophe JAILLET <christophe.jaillet@wanadoo.fr> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
29fd0ec65e
commit
a6366b13c1
@ -266,9 +266,7 @@ static bool ipa_mem_valid(struct ipa *ipa, const struct ipa_mem_data *mem_data)
|
||||
}
|
||||
|
||||
/* Now see if any required regions are not defined */
|
||||
for (mem_id = find_first_zero_bit(regions, IPA_MEM_COUNT);
|
||||
mem_id < IPA_MEM_COUNT;
|
||||
mem_id = find_next_zero_bit(regions, IPA_MEM_COUNT, mem_id + 1)) {
|
||||
for_each_clear_bit(mem_id, regions, IPA_MEM_COUNT) {
|
||||
if (ipa_mem_id_required(ipa, mem_id))
|
||||
dev_err(dev, "required memory region %u missing\n",
|
||||
mem_id);
|
||||
|
Loading…
Reference in New Issue
Block a user