media: platform: Fix Warning of Unneeded Semicolon reported by coccicheck
fixed the warning in the files below drivers/media/platform/pxa_camera.c:1391:2-3: Unneeded semicolon drivers/media/platform/qcom/venus/vdec_ctrls.c:78:2-3: Unneeded semicolon drivers/media/platform/sti/c8sectpfe/c8sectpfe-dvb.c:146:3-4: Unneeded semicolon Signed-off-by: Shobhit Kukreti <shobhitkukreti@gmail.com> Signed-off-by: Hans Verkuil <hverkuil-cisco@xs4all.nl> Signed-off-by: Mauro Carvalho Chehab <mchehab+samsung@kernel.org>
This commit is contained in:
parent
d4ec9550e4
commit
eb42ac1b41
@ -1392,7 +1392,7 @@ static int pxa_buffer_init(struct pxa_camera_dev *pcdev,
|
||||
break;
|
||||
default:
|
||||
return -EINVAL;
|
||||
};
|
||||
}
|
||||
buf->nb_planes = nb_channels;
|
||||
|
||||
ret = sg_split(sgt->sgl, sgt->nents, 0, nb_channels,
|
||||
|
@ -75,7 +75,7 @@ static int vdec_op_g_volatile_ctrl(struct v4l2_ctrl *ctrl)
|
||||
break;
|
||||
default:
|
||||
return -EINVAL;
|
||||
};
|
||||
}
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
@ -143,7 +143,7 @@ int c8sectpfe_frontend_attach(struct dvb_frontend **fe,
|
||||
"%s: stv0367ter_attach failed for NIM card %s\n"
|
||||
, __func__, dvb_card_str(tsin->dvb_card));
|
||||
return -ENODEV;
|
||||
};
|
||||
}
|
||||
|
||||
/*
|
||||
* init the demod so that i2c gate_ctrl
|
||||
@ -203,7 +203,7 @@ int c8sectpfe_frontend_attach(struct dvb_frontend **fe,
|
||||
"%s: stv6110x_attach failed for NIM card %s\n"
|
||||
, __func__, dvb_card_str(tsin->dvb_card));
|
||||
return -ENODEV;
|
||||
};
|
||||
}
|
||||
|
||||
stv090x_config.tuner_init = fe2->tuner_init;
|
||||
stv090x_config.tuner_set_mode = fe2->tuner_set_mode;
|
||||
|
Loading…
x
Reference in New Issue
Block a user