Message ID | 20220216210447.481006-11-jacopo+renesas@jmondi.org |
---|---|
State | New |
Headers | show |
Series | media: Multiplexed streams for R-Car CSI-2 and ADV748x | expand |
diff --git a/drivers/media/platform/rcar-vin/rcar-dma.c b/drivers/media/platform/rcar-vin/rcar-dma.c index 3575be1387e3..1e181eede8e1 100644 --- a/drivers/media/platform/rcar-vin/rcar-dma.c +++ b/drivers/media/platform/rcar-vin/rcar-dma.c @@ -1133,7 +1133,8 @@ static int rvin_mc_validate_format(struct rvin_dev *vin, struct v4l2_subdev *sd, }; fmt.pad = pad->index; - if (v4l2_subdev_call(sd, pad, get_fmt, NULL, &fmt)) + if (v4l2_subdev_call(sd, pad, get_fmt, + v4l2_subdev_get_active_state(sd), &fmt)) return -EPIPE; switch (fmt.format.code) {
The VIN driver calls get_fmt() on the remove subdev to validate its format. Now that the R-Car CSI-2 driver supports multiplexed streams pass it the active state when calling the operation. Signed-off-by: Jacopo Mondi <jacopo+renesas@jmondi.org> --- drivers/media/platform/rcar-vin/rcar-dma.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-)