mirror of
https://github.com/FEX-Emu/linux.git
synced 2024-12-14 21:01:29 +00:00
[media] uvc_entity: initialize return value
drivers/media/video/uvc/uvc_entity.c: In function ‘uvc_mc_register_entities’: drivers/media/video/uvc/uvc_entity.c:33: warning: ‘ret’ may be used uninitialized in this function Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
This commit is contained in:
parent
8c89ddd536
commit
76df01eacd
@ -30,7 +30,7 @@ static int uvc_mc_register_entity(struct uvc_video_chain *chain,
|
||||
struct uvc_entity *remote;
|
||||
unsigned int i;
|
||||
u8 remote_pad;
|
||||
int ret;
|
||||
int ret = 0;
|
||||
|
||||
for (i = 0; i < entity->num_pads; ++i) {
|
||||
struct media_entity *source;
|
||||
|
Loading…
Reference in New Issue
Block a user