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>
This commit is contained in:
Markus Elfring 2016-09-17 14:36:26 +02:00 коммит произвёл Vinod Koul
Родитель 11f7a8d19b
Коммит 876e023524
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -3730,7 +3730,7 @@ failure:
kfree(base->lookup_phy_chans); kfree(base->lookup_phy_chans);
kfree(base->phy_res); kfree(base->phy_res);
kfree(base); kfree(base);
report_failure: report_failure:
d40_err(&pdev->dev, "probe failed\n"); d40_err(&pdev->dev, "probe failed\n");
return ret; return ret;
} }