ARM: S3C24XX: don't use uninitialized variable in dma.c
Commit 8970ef47
(S3C24XX: Remove hardware specific registers from DMA
calls) removed the parameter dcon in s3c2410_dma_config() and calculates
it on its own. So the debug-output for the old parameter can go, too.
Fixes:
arch/arm/plat-s3c24xx/dma.c: In function 's3c2410_dma_config':
arch/arm/plat-s3c24xx/dma.c:1030:2: warning: 'dcon' is used uninitialized in this function
Signed-off-by: Wolfram Sang <w.sang@pengutronix.de>
Cc: Ben Dooks <ben-linux@fluff.org>
Signed-off-by: Kukjin Kim <kgene.kim@samsung.com>
This commit is contained in:
@@ -1027,17 +1027,13 @@ int s3c2410_dma_config(unsigned int channel,
|
|||||||
struct s3c2410_dma_chan *chan = s3c_dma_lookup_channel(channel);
|
struct s3c2410_dma_chan *chan = s3c_dma_lookup_channel(channel);
|
||||||
unsigned int dcon;
|
unsigned int dcon;
|
||||||
|
|
||||||
pr_debug("%s: chan=%d, xfer_unit=%d, dcon=%08x\n",
|
pr_debug("%s: chan=%d, xfer_unit=%d\n", __func__, channel, xferunit);
|
||||||
__func__, channel, xferunit, dcon);
|
|
||||||
|
|
||||||
if (chan == NULL)
|
if (chan == NULL)
|
||||||
return -EINVAL;
|
return -EINVAL;
|
||||||
|
|
||||||
pr_debug("%s: Initial dcon is %08x\n", __func__, dcon);
|
|
||||||
|
|
||||||
dcon = chan->dcon & dma_sel.dcon_mask;
|
dcon = chan->dcon & dma_sel.dcon_mask;
|
||||||
|
pr_debug("%s: dcon is %08x\n", __func__, dcon);
|
||||||
pr_debug("%s: New dcon is %08x\n", __func__, dcon);
|
|
||||||
|
|
||||||
switch (chan->req_ch) {
|
switch (chan->req_ch) {
|
||||||
case DMACH_I2S_IN:
|
case DMACH_I2S_IN:
|
||||||
|
Reference in New Issue
Block a user