Prev: [PATCH 3/7] phonet: Use for_each_bit
Next: ACPI: Protection from suspending in the middle of EC transaction
From: Akinobu Mita on 31 Jan 2010 07:00 Signed-off-by: Akinobu Mita <akinobu.mita(a)gmail.com> Cc: Chas Williams <chas(a)cmf.nrl.navy.mil> Cc: linux-atm-general(a)lists.sourceforge.net Cc: netdev(a)vger.kernel.org --- drivers/atm/lanai.c | 7 +++---- 1 files changed, 3 insertions(+), 4 deletions(-) diff --git a/drivers/atm/lanai.c b/drivers/atm/lanai.c index cf97c34..97700f8 100644 --- a/drivers/atm/lanai.c +++ b/drivers/atm/lanai.c @@ -306,11 +306,10 @@ static void vci_bitfield_iterate(struct lanai_dev *lanai, const unsigned long *lp, void (*func)(struct lanai_dev *,vci_t vci)) { - vci_t vci = find_first_bit(lp, NUM_VCI); - while (vci < NUM_VCI) { + vci_t vci; + + for_each_bit(vci, lp, NUM_VCI) func(lanai, vci); - vci = find_next_bit(lp, NUM_VCI, vci + 1); - } } /* -------------------- BUFFER UTILITIES: */ -- 1.6.0.6 -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo(a)vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/ |