[media] am437x: remove unused variable
drivers/media/platform/am437x/am437x-vpfe.c: In function 'vpfe_get_subdev_input_index': drivers/media/platform/am437x/am437x-vpfe.c:1679:27: warning: variable 'sdinfo' set but not used [-Wunused-but-set-variable] struct vpfe_subdev_info *sdinfo; ^ Cc: Benoit Parrot <bparrot@ti.com> Signed-off-by: Mauro Carvalho Chehab <mchehab@osg.samsung.com> Acked-by: Lad, Prabhakar <prabhakar.csengg@gmail.com> Signed-off-by: Mauro Carvalho Chehab <mchehab@osg.samsung.com>
This commit is contained in:
parent
f396573e1c
commit
c413a9e690
|
@ -1675,12 +1675,9 @@ vpfe_get_subdev_input_index(struct vpfe_device *vpfe,
|
|||
int *subdev_input_index,
|
||||
int app_input_index)
|
||||
{
|
||||
struct vpfe_config *cfg = vpfe->cfg;
|
||||
struct vpfe_subdev_info *sdinfo;
|
||||
int i, j = 0;
|
||||
|
||||
for (i = 0; i < ARRAY_SIZE(vpfe->cfg->asd); i++) {
|
||||
sdinfo = &cfg->sub_devs[i];
|
||||
if (app_input_index < (j + 1)) {
|
||||
*subdev_index = i;
|
||||
*subdev_input_index = app_input_index - j;
|
||||
|
|
Loading…
Reference in New Issue