diff options
author | Markus Elfring <elfring@users.sourceforge.net> | 2016-09-17 14:36:26 +0200 |
---|---|---|
committer | Vinod Koul <vinod.koul@intel.com> | 2016-09-26 23:06:17 +0530 |
commit | 876e023524051e909e48684f4b534f0803df7468 (patch) | |
tree | 5ab481889e83071710232ed1456d3a8b8a647592 /drivers/dma/ste_dma40.c | |
parent | 11f7a8d19bc85c82241a6540cd83d2aad7e94a04 (diff) |
ste_dma40: Adjust the position of a jump label in d40_probe()
Add a space character before a single jump label in this function
according to the current Linux coding style convention.
Signed-off-by: Markus Elfring <elfring@users.sourceforge.net>
Reviewed-by: Linus Walleij <linus.walleij@linaro.org>
Signed-off-by: Vinod Koul <vinod.koul@intel.com>
Diffstat (limited to 'drivers/dma/ste_dma40.c')
-rw-r--r-- | drivers/dma/ste_dma40.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/dma/ste_dma40.c b/drivers/dma/ste_dma40.c index cead96b6db42..03adf918d889 100644 --- a/drivers/dma/ste_dma40.c +++ b/drivers/dma/ste_dma40.c @@ -3730,7 +3730,7 @@ failure: kfree(base->lookup_phy_chans); kfree(base->phy_res); kfree(base); -report_failure: + report_failure: d40_err(&pdev->dev, "probe failed\n"); return ret; } |