2010-11-02 01:09:55

by Axel Lin

[permalink] [raw]
Subject: [PATCH] dma: imx-dma: fix imxdma_probe error path

otherwise, i will be -1 inside the latest iteration of the while loop.

Signed-off-by: Axel Lin <[email protected]>
---
drivers/dma/imx-dma.c | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/drivers/dma/imx-dma.c b/drivers/dma/imx-dma.c
index f629e49..e53d438 100644
--- a/drivers/dma/imx-dma.c
+++ b/drivers/dma/imx-dma.c
@@ -379,7 +379,7 @@ static int __init imxdma_probe(struct platform_device *pdev)
return 0;

err_init:
- while (i-- >= 0) {
+ while (--i >= 0) {
struct imxdma_channel *imxdmac = &imxdma->channel[i];
imx_dma_free(imxdmac->imxdma_channel);
}
--
1.7.2



2010-11-02 01:28:22

by Thiago Farina

[permalink] [raw]
Subject: Re: [PATCH] dma: imx-dma: fix imxdma_probe error path

On Mon, Nov 1, 2010 at 11:12 PM, Axel Lin <[email protected]> wrote:
> otherwise, i will be -1 inside the latest iteration of the while loop.
>
nit: s/otherwise, i will be/Otherwise, it will be ?

2010-11-02 01:30:46

by Axel Lin

[permalink] [raw]
Subject: Re: [PATCH] dma: imx-dma: fix imxdma_probe error path

2010/11/2 Thiago Farina <[email protected]>:
> On Mon, Nov 1, 2010 at 11:12 PM, Axel Lin <[email protected]> wrote:
>> otherwise, i will be -1 inside the latest iteration of the while loop.
>>
> nit: s/otherwise, i will be/Otherwise, it will be ?

I mean the i variable will become -1 inside the latest iteration of
the while loop.

Should I resend the patch?

Regards,
Axel

2010-11-02 01:45:52

by Thiago Farina

[permalink] [raw]
Subject: Re: [PATCH] dma: imx-dma: fix imxdma_probe error path

On Mon, Nov 1, 2010 at 11:30 PM, Axel Lin <[email protected]> wrote:
> 2010/11/2 Thiago Farina <[email protected]>:
>> On Mon, Nov 1, 2010 at 11:12 PM, Axel Lin <[email protected]> wrote:
>>> otherwise, i will be -1 inside the latest iteration of the while loop.
>>>
>> nit: s/otherwise, i will be/Otherwise, it will be ?
>
> I mean the i variable will become -1 inside the latest iteration of
> the while loop.
>
> Should I resend the patch?
>
Your call, as I got confused others can get confused too.

2010-12-03 09:36:44

by Dan Williams

[permalink] [raw]
Subject: Re: [PATCH] dma: imx-dma: fix imxdma_probe error path

On Mon, Nov 1, 2010 at 6:12 PM, Axel Lin <[email protected]> wrote:
> otherwise, i will be -1 inside the latest iteration of the while loop.
>
> Signed-off-by: Axel Lin <[email protected]>
> ---

Catching up on the backlog... applied.