提交 696b4ff8 编写于 作者: J Jingoo Han 提交者: Vinod Koul

dma: sirf: use NULL instead of 0

sirfsoc_dma_prep_cyclic() returns pointer, thus NULL should be
used instead of 0 in order to fix the following sparse warning:

drivers/dma/sirf-dma.c:598:24: warning: Using plain integer as NULL pointer
Signed-off-by: NJingoo Han <jg1.han@samsung.com>
Signed-off-by: NVinod Koul <vinod.koul@intel.com>
上级 4c143725
...@@ -595,7 +595,7 @@ sirfsoc_dma_prep_cyclic(struct dma_chan *chan, dma_addr_t addr, ...@@ -595,7 +595,7 @@ sirfsoc_dma_prep_cyclic(struct dma_chan *chan, dma_addr_t addr,
spin_unlock_irqrestore(&schan->lock, iflags); spin_unlock_irqrestore(&schan->lock, iflags);
if (!sdesc) if (!sdesc)
return 0; return NULL;
/* Place descriptor in prepared list */ /* Place descriptor in prepared list */
spin_lock_irqsave(&schan->lock, iflags); spin_lock_irqsave(&schan->lock, iflags);
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册