* [PATCH v2] arm: davinci: use for_each_set_bit_from
@ 2012-04-11 11:36 Akinobu Mita
2012-04-17 17:59 ` Sekhar Nori
0 siblings, 1 reply; 2+ messages in thread
From: Akinobu Mita @ 2012-04-11 11:36 UTC (permalink / raw)
To: linux-arm-kernel
Use for_each_set_bit_from to iterate over all the set bit in a memory
region.
Signed-off-by: Akinobu Mita <akinobu.mita@gmail.com>
Acked-by: Sekhar Nori <nsekhar@ti.com>
Cc: Sekhar Nori <nsekhar@ti.com>
Cc: Christian Riesch <christian.riesch@omicron.at>
Cc: Kevin Hilman <khilman@ti.com>
Cc: davinci-linux-open-source at linux.davincidsp.com
Cc: Russell King <linux@arm.linux.org.uk>
Cc: linux-arm-kernel at lists.infradead.org
---
v2: remove uncorrect semicolon at the end of the line found by Christian Riesch
arch/arm/mach-davinci/dma.c | 6 +++---
1 files changed, 3 insertions(+), 3 deletions(-)
diff --git a/arch/arm/mach-davinci/dma.c b/arch/arm/mach-davinci/dma.c
index fd33919..95ce019 100644
--- a/arch/arm/mach-davinci/dma.c
+++ b/arch/arm/mach-davinci/dma.c
@@ -557,9 +557,9 @@ static int reserve_contiguous_slots(int ctlr, unsigned int id,
if (i == edma_cc[ctlr]->num_slots)
stop_slot = i;
- for (j = start_slot; j < stop_slot; j++)
- if (test_bit(j, tmp_inuse))
- clear_bit(j, edma_cc[ctlr]->edma_inuse);
+ j = start_slot;
+ for_each_set_bit_from(j, tmp_inuse, stop_slot)
+ clear_bit(j, edma_cc[ctlr]->edma_inuse);
if (count)
return -EBUSY;
--
1.7.4.4
^ permalink raw reply related [flat|nested] 2+ messages in thread
* [PATCH v2] arm: davinci: use for_each_set_bit_from
2012-04-11 11:36 [PATCH v2] arm: davinci: use for_each_set_bit_from Akinobu Mita
@ 2012-04-17 17:59 ` Sekhar Nori
0 siblings, 0 replies; 2+ messages in thread
From: Sekhar Nori @ 2012-04-17 17:59 UTC (permalink / raw)
To: linux-arm-kernel
Hi Akinobu,
On 4/11/2012 5:06 PM, Akinobu Mita wrote:
> Use for_each_set_bit_from to iterate over all the set bit in a memory
> region.
>
> Signed-off-by: Akinobu Mita <akinobu.mita@gmail.com>
> Acked-by: Sekhar Nori <nsekhar@ti.com>
> Cc: Sekhar Nori <nsekhar@ti.com>
> Cc: Christian Riesch <christian.riesch@omicron.at>
> Cc: Kevin Hilman <khilman@ti.com>
> Cc: davinci-linux-open-source at linux.davincidsp.com
> Cc: Russell King <linux@arm.linux.org.uk>
> Cc: linux-arm-kernel at lists.infradead.org
> ---
> v2: remove uncorrect semicolon at the end of the line found by Christian Riesch
Yes, good catch by Christian. Queuing this one for v3.5
Thanks,
Sekhar
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2012-04-17 17:59 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-04-11 11:36 [PATCH v2] arm: davinci: use for_each_set_bit_from Akinobu Mita
2012-04-17 17:59 ` Sekhar Nori
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).