From: Laurent Pinchart Date: Tue, 9 Aug 2016 15:36:41 +0000 (-0300) Subject: [media] v4l: rcar-fcp: Keep the coding style consistent X-Git-Tag: v4.9-rc1~43^2~136 X-Git-Url: http://git.osdn.net/view?a=commitdiff_plain;h=6eaafbdb668b09b1a06841ccddc405b31c216233;p=uclinux-h8%2Flinux.git [media] v4l: rcar-fcp: Keep the coding style consistent The Renesas multimedia drivers use ret to store return values, fix the only exception in the rcar-fcp driver to keep the coding style consistent. Signed-off-by: Laurent Pinchart Signed-off-by: Mauro Carvalho Chehab --- diff --git a/drivers/media/platform/rcar-fcp.c b/drivers/media/platform/rcar-fcp.c index bc50c69ee0c5..f7bcbf7677a0 100644 --- a/drivers/media/platform/rcar-fcp.c +++ b/drivers/media/platform/rcar-fcp.c @@ -99,14 +99,14 @@ EXPORT_SYMBOL_GPL(rcar_fcp_put); */ int rcar_fcp_enable(struct rcar_fcp_device *fcp) { - int error; + int ret; if (!fcp) return 0; - error = pm_runtime_get_sync(fcp->dev); - if (error < 0) - return error; + ret = pm_runtime_get_sync(fcp->dev); + if (ret < 0) + return ret; return 0; }