Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit a64860e5 authored by Javier Martinez Canillas's avatar Javier Martinez Canillas Committed by Mauro Carvalho Chehab
Browse files

[media] omap3isp: rename single labels to just error



Commit bc36b30fe06b ("[media] omap3isp: separate links creation from
entities init") moved the link creation logic from the entities init
functions and so removed the error_link labels from the error paths.

But after that, some functions have a single error label so it makes
more sense to rename the label to just "error" in thi case.

Suggested-by: default avatarLaurent Pinchart <laurent.pinchart@ideasonboard.com>
Signed-off-by: default avatarJavier Martinez Canillas <javier@osg.samsung.com>
Signed-off-by: default avatarMauro Carvalho Chehab <mchehab@osg.samsung.com>
parent b285d5af
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -2669,11 +2669,11 @@ static int ccdc_init_entities(struct isp_ccdc_device *ccdc)

	ret = omap3isp_video_init(&ccdc->video_out, "CCDC");
	if (ret < 0)
		goto error_video;
		goto error;

	return 0;

error_video:
error:
	media_entity_cleanup(me);
	return ret;
}
+2 −2
Original line number Diff line number Diff line
@@ -1102,11 +1102,11 @@ static int ccp2_init_entities(struct isp_ccp2_device *ccp2)

	ret = omap3isp_video_init(&ccp2->video_in, "CCP2");
	if (ret < 0)
		goto error_video;
		goto error;

	return 0;

error_video:
error:
	media_entity_cleanup(&ccp2->subdev.entity);
	return ret;
}