media: imx: capture: Use device name to construct bus_info
authorLaurent Pinchart <laurent.pinchart@ideasonboard.com>
Mon, 15 Feb 2021 04:26:32 +0000 (05:26 +0100)
committerMauro Carvalho Chehab <mchehab+huawei@kernel.org>
Thu, 11 Mar 2021 10:59:47 +0000 (11:59 +0100)
The v4l2_capability bus_info field is meant to locate the device in the
system. Using a subdev name isn't a good fit, the device name is a much
better option. Use it.

Signed-off-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
Reviewed-by: Rui Miguel Silva <rmfrfs@gmail.com>
Reviewed-by: Philipp Zabel <p.zabel@pengutronix.de>
Signed-off-by: Hans Verkuil <hverkuil-cisco@xs4all.nl>
Signed-off-by: Mauro Carvalho Chehab <mchehab+huawei@kernel.org>
drivers/staging/media/imx/imx-media-capture.c

index 5fcf731..4c9ae3a 100644 (file)
@@ -74,7 +74,7 @@ static int vidioc_querycap(struct file *file, void *fh,
        strscpy(cap->driver, IMX_CAPTURE_NAME, sizeof(cap->driver));
        strscpy(cap->card, IMX_CAPTURE_NAME, sizeof(cap->card));
        snprintf(cap->bus_info, sizeof(cap->bus_info),
-                "platform:%s", priv->src_sd->name);
+                "platform:%s", dev_name(priv->dev));
 
        return 0;
 }