diff options
author | Vinod Koul <vinod.koul@intel.com> | 2016-07-02 15:35:07 +0530 |
---|---|---|
committer | Vinod Koul <vinod.koul@intel.com> | 2016-07-16 20:19:01 +0530 |
commit | 71c6b663492c5da78c94d3405c0e8044b8290d00 (patch) | |
tree | 6b7ce3905725ceddc465351cc62a378c0333a2e2 /drivers/dma | |
parent | ea62aa80bbcc881d0805cbee9afd74e3d029e48e (diff) | |
download | linux-71c6b663492c5da78c94d3405c0e8044b8290d00.tar.bz2 |
dmaengine: imx-dma: fix coding style issue
imxdma_probe function starting brace is wrongly indented, so fix that
Signed-off-by: Vinod Koul <vinod.koul@intel.com>
Cc: Sascha Hauer <s.hauer@pengutronix.de>
Cc: Linus Walleij <linus.walleij@linaro.org>
Diffstat (limited to 'drivers/dma')
-rw-r--r-- | drivers/dma/imx-dma.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/dma/imx-dma.c b/drivers/dma/imx-dma.c index 9301d3d09563..a960608c0a4d 100644 --- a/drivers/dma/imx-dma.c +++ b/drivers/dma/imx-dma.c @@ -1052,7 +1052,7 @@ static struct dma_chan *imxdma_xlate(struct of_phandle_args *dma_spec, } static int __init imxdma_probe(struct platform_device *pdev) - { +{ struct imxdma_engine *imxdma; struct resource *res; const struct of_device_id *of_id; |