projects
/
linux-edison.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
ae14d4b
)
dmaengine/ste_dma40: fix introduced warnings
author
Philippe Langlais
<philippe.langlais@linaro.org>
Sat, 7 May 2011 15:09:43 +0000
(17:09 +0200)
committer
Vinod Koul
<vinod.koul@intel.com>
Mon, 9 May 2011 05:54:17 +0000
(11:24 +0530)
The compiler nowadays moans about possibly non-assigned variable.
Fix this by default-assigning 0.
Signed-off-by: Philippe Langlais <philippe.langlais@linaro.org>
Signed-off-by: Linus Walleij <linus.walleij@linaro.org>
Signed-off-by: Vinod Koul <vinod.koul@intel.com>
drivers/dma/ste_dma40.c
patch
|
blob
|
history
diff --git
a/drivers/dma/ste_dma40.c
b/drivers/dma/ste_dma40.c
index
af955de
..
65d2535
100644
(file)
--- a/
drivers/dma/ste_dma40.c
+++ b/
drivers/dma/ste_dma40.c
@@
-1829,7
+1829,7
@@
d40_get_dev_addr(struct d40_chan *chan, enum dma_data_direction direction)
{
struct stedma40_platform_data *plat = chan->base->plat_data;
struct stedma40_chan_cfg *cfg = &chan->dma_cfg;
- dma_addr_t addr;
+ dma_addr_t addr
= 0
;
if (chan->runtime_addr)
return chan->runtime_addr;