mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git
synced 2024-11-01 17:08:10 +00:00
V4L/DVB (10309): s2255drv: use usb_make_path to report bus info
usb_make_path reports canonical bus info. Use it when reporting bus info in VIDIOC_QUERYCAP. Signed-off-by: Thierry MERLE <thierry.merle@free.fr> Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
This commit is contained in:
parent
b12049a2c3
commit
e22ed887ee
1 changed files with 1 additions and 2 deletions
|
@ -846,8 +846,7 @@ static int vidioc_querycap(struct file *file, void *priv,
|
|||
struct s2255_dev *dev = fh->dev;
|
||||
strlcpy(cap->driver, "s2255", sizeof(cap->driver));
|
||||
strlcpy(cap->card, "s2255", sizeof(cap->card));
|
||||
strlcpy(cap->bus_info, dev_name(&dev->udev->dev),
|
||||
sizeof(cap->bus_info));
|
||||
usb_make_path(dev->udev, cap->bus_info, sizeof(cap->bus_info));
|
||||
cap->version = S2255_VERSION;
|
||||
cap->capabilities = V4L2_CAP_VIDEO_CAPTURE | V4L2_CAP_STREAMING;
|
||||
return 0;
|
||||
|
|
Loading…
Reference in a new issue