aboutsummaryrefslogtreecommitdiff
path: root/drivers/dma
diff options
context:
space:
mode:
authorAndy Shevchenko <andriy.shevchenko@linux.intel.com>2013-03-26 19:29:13 +0200
committerVinod Koul <vinod.koul@intel.com>2013-04-15 09:51:19 +0530
commitf5b9b77eea1f9aaf7725872be4b382f5530bb41e (patch)
treed0574cdb0d64da577ee4773d6c6f705f47de660f /drivers/dma
parentf776076b9fa82d630651c9af56359d80fce86d68 (diff)
dw_dmac: remove unnecessary ENODEV check
If CONFIG_OF is not set the of_node of the device will always be NULL. Signed-off-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com> Acked-by: Viresh Kumar <viresh.kumar@linaro.org> Acked-by: Arnd Bergmann <arnd@arndb.de> Signed-off-by: Vinod Koul <vinod.koul@intel.com>
Diffstat (limited to 'drivers/dma')
-rw-r--r--drivers/dma/dw_dmac.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/dma/dw_dmac.c b/drivers/dma/dw_dmac.c
index 951ef5bc8af..e33dc3bdbdb 100644
--- a/drivers/dma/dw_dmac.c
+++ b/drivers/dma/dw_dmac.c
@@ -1828,7 +1828,7 @@ static int dw_probe(struct platform_device *pdev)
if (pdev->dev.of_node) {
err = of_dma_controller_register(pdev->dev.of_node,
dw_dma_of_xlate, dw);
- if (err && err != -ENODEV)
+ if (err)
dev_err(&pdev->dev,
"could not register of_dma_controller\n");
}