提交 201ab536 编写于 作者: N Nicolas Ferre 提交者: Artem Bityutskiy

mtd: atmel_nand: fix wrong use of 0 as NULL

Fixing this error:
atmel_nand.c:718:20: warning: Using plain integer as NULL pointer
Signed-off-by: NNicolas Ferre <nicolas.ferre@atmel.com>
Acked-by: NJean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
Signed-off-by: NArtem Bityutskiy <dedekind1@gmail.com>
上级 08c248fb
...@@ -588,7 +588,7 @@ static int __init atmel_nand_probe(struct platform_device *pdev) ...@@ -588,7 +588,7 @@ static int __init atmel_nand_probe(struct platform_device *pdev)
dma_cap_zero(mask); dma_cap_zero(mask);
dma_cap_set(DMA_MEMCPY, mask); dma_cap_set(DMA_MEMCPY, mask);
host->dma_chan = dma_request_channel(mask, 0, NULL); host->dma_chan = dma_request_channel(mask, NULL, NULL);
if (!host->dma_chan) { if (!host->dma_chan) {
dev_err(host->dev, "Failed to request DMA channel\n"); dev_err(host->dev, "Failed to request DMA channel\n");
use_dma = 0; use_dma = 0;
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册