[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 <laurent.pinchart+renesas@ideasonboard.com> Signed-off-by: Mauro Carvalho Chehab <mchehab@s-opensource.com>
This commit is contained in:
parent
c49148e87a
commit
6eaafbdb66
1 changed files with 4 additions and 4 deletions
|
@ -99,14 +99,14 @@ EXPORT_SYMBOL_GPL(rcar_fcp_put);
|
||||||
*/
|
*/
|
||||||
int rcar_fcp_enable(struct rcar_fcp_device *fcp)
|
int rcar_fcp_enable(struct rcar_fcp_device *fcp)
|
||||||
{
|
{
|
||||||
int error;
|
int ret;
|
||||||
|
|
||||||
if (!fcp)
|
if (!fcp)
|
||||||
return 0;
|
return 0;
|
||||||
|
|
||||||
error = pm_runtime_get_sync(fcp->dev);
|
ret = pm_runtime_get_sync(fcp->dev);
|
||||||
if (error < 0)
|
if (ret < 0)
|
||||||
return error;
|
return ret;
|
||||||
|
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue