Hi Laurent, Thanks for the patch. On 24/08/17 10:30, Laurent Pinchart wrote: > Use the media device under test, not the default media0. > > Signed-off-by: Laurent Pinchart <laurent.pinchart@xxxxxxxxxxxxxxxx> Looks good, and looks like this is the only use of media-ctl directly. Reviewed-by: Kieran Bingham <kieran.bingham+renesas@xxxxxxxxxxxxxxxx> > --- > scripts/vsp-lib.sh | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/scripts/vsp-lib.sh b/scripts/vsp-lib.sh > index 726ff793b2ce..fa4a6984e1bb 100755 > --- a/scripts/vsp-lib.sh > +++ b/scripts/vsp-lib.sh > @@ -54,7 +54,7 @@ vsp1_count_wpfs() { > } > > vsp1_count_bru_inputs() { > - local num_pads=`media-ctl -p | grep 'entity.*bru' | sed 's/.*(\([0-9]\) pads.*/\1/'` > + local num_pads=`$mediactl -d $mdev -p | grep 'entity.*bru' | sed 's/.*(\([0-9]\) pads.*/\1/'` > echo $((num_pads-1)) > } > >