diff options
author | Mauro Carvalho Chehab <mchehab@redhat.com> | 2009-03-22 08:53:36 -0300 |
---|---|---|
committer | Mauro Carvalho Chehab <mchehab@redhat.com> | 2009-04-06 21:44:10 -0300 |
commit | 2c6beca875f0237ae9cfb2bb26144b60b9418c3a (patch) | |
tree | e59559c54e388a56361086efe5583209d4d970e7 | |
parent | 4be1ad36683b23355f059c3386f97a4427d1a56a (diff) | |
download | kernel_samsung_crespo-2c6beca875f0237ae9cfb2bb26144b60b9418c3a.zip kernel_samsung_crespo-2c6beca875f0237ae9cfb2bb26144b60b9418c3a.tar.gz kernel_samsung_crespo-2c6beca875f0237ae9cfb2bb26144b60b9418c3a.tar.bz2 |
V4L/DVB (11135): cx231xx: use usb_make_path() for bus_info
VIDIOC_QUERYCAP should return the proper bus info. In the case of USB, this
should be generated by usb_make_path(), being something like:
usb-0000:00:1d.7-2
Cc: Srinivasa Deevi <srinivasa.deevi@conexant.com>
Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
-rw-r--r-- | drivers/media/video/cx231xx/cx231xx-video.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/drivers/media/video/cx231xx/cx231xx-video.c b/drivers/media/video/cx231xx/cx231xx-video.c index 254d228..d660c08 100644 --- a/drivers/media/video/cx231xx/cx231xx-video.c +++ b/drivers/media/video/cx231xx/cx231xx-video.c @@ -1640,8 +1640,7 @@ static int vidioc_querycap(struct file *file, void *priv, strlcpy(cap->driver, "cx231xx", sizeof(cap->driver)); strlcpy(cap->card, cx231xx_boards[dev->model].name, sizeof(cap->card)); - strlcpy(cap->bus_info, dev->v4l2_dev.name, - sizeof(cap->bus_info)); + usb_make_path(dev->udev, cap->bus_info, sizeof(cap->bus_info)); cap->version = CX231XX_VERSION_CODE; |