summaryrefslogtreecommitdiffstats
path: root/drivers/dma
diff options
context:
space:
mode:
authorWei Yongjun2018-01-17 12:27:10 +0100
committerVinod Koul2018-01-19 06:37:50 +0100
commit2cbe23f8fc88587cc4cc10c0d6d938ccb65ec033 (patch)
treebf0eff137448e29d962173771214632cc71485f4 /drivers/dma
parentLinux 4.15-rc1 (diff)
downloadkernel-qcow2-linux-2cbe23f8fc88587cc4cc10c0d6d938ccb65ec033.tar.gz
kernel-qcow2-linux-2cbe23f8fc88587cc4cc10c0d6d938ccb65ec033.tar.xz
kernel-qcow2-linux-2cbe23f8fc88587cc4cc10c0d6d938ccb65ec033.zip
dmaengine: stm32-dmamux: Remove unnecessary platform_get_resource() error check
devm_ioremap_resource() already checks if the resource is NULL, so remove the unnecessary platform_get_resource() error check. Signed-off-by: Wei Yongjun <weiyongjun1@huawei.com> Acked-by: Pierre-Yves MORDRET <pierre-yves.mordret@st.com> Signed-off-by: Vinod Koul <vinod.koul@intel.com>
Diffstat (limited to 'drivers/dma')
-rw-r--r--drivers/dma/stm32-dmamux.c3
1 files changed, 0 insertions, 3 deletions
diff --git a/drivers/dma/stm32-dmamux.c b/drivers/dma/stm32-dmamux.c
index d5db0f6e1ff8..4dbb30cf94ac 100644
--- a/drivers/dma/stm32-dmamux.c
+++ b/drivers/dma/stm32-dmamux.c
@@ -253,9 +253,6 @@ static int stm32_dmamux_probe(struct platform_device *pdev)
}
res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
- if (!res)
- return -ENODEV;
-
iomem = devm_ioremap_resource(&pdev->dev, res);
if (IS_ERR(iomem))
return PTR_ERR(iomem);