[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Message-Id: <1444323694-3189-1-git-send-email-colin.king@canonical.com>
Date: Thu, 8 Oct 2015 18:01:34 +0100
From: Colin King <colin.king@...onical.com>
To: Vinod Koul <vinod.koul@...el.com>,
Dan Williams <dan.j.williams@...el.com>,
dmaengine@...r.kernel.org
Cc: linux-kernel@...r.kernel.org
Subject: [PATCH] dmaengine: zxdma: fix memset that is currently doing nothing
From: Colin Ian King <colin.king@...onical.com>
The size and value arguments are swapped in the call to memset
effectively making it a no-op because of the zero size. Swap
these arguments around to do the memset correctly.
Signed-off-by: Colin Ian King <colin.king@...onical.com>
---
drivers/dma/zx296702_dma.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/drivers/dma/zx296702_dma.c b/drivers/dma/zx296702_dma.c
index c017fcd..245d759 100644
--- a/drivers/dma/zx296702_dma.c
+++ b/drivers/dma/zx296702_dma.c
@@ -441,7 +441,7 @@ static struct zx_dma_desc_sw *zx_alloc_desc_resource(int num,
kfree(ds);
return NULL;
}
- memset(ds->desc_hw, sizeof(struct zx_desc_hw) * num, 0);
+ memset(ds->desc_hw, 0, sizeof(struct zx_desc_hw) * num);
ds->desc_num = num;
return ds;
}
--
2.5.0
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists