diff options
author | Jean-Francois Moine <moinejf@free.fr> | 2008-07-23 02:24:06 -0400 |
---|---|---|
committer | Mauro Carvalho Chehab <mchehab@infradead.org> | 2008-07-27 10:06:29 -0400 |
commit | c6edaf1674d3c17770b1c9966306b802adb21a2b (patch) | |
tree | 8fd38319c6da57471f620c78a57ecb3b572ff372 | |
parent | 353facd4ab5acc6e9d83985eec9ca17e5d0cb470 (diff) |
V4L/DVB (8511): gspca: Get the card name of QUERYCAP from the usb product name.
This is a preliminary for using the driver_info of the struct
usb_device_id to handle the specific per webcam information.
Signed-off-by: Jean-Francois Moine <moinejf@free.fr>
Signed-off-by: Mauro Carvalho Chehab <mchehab@infradead.org>
-rw-r--r-- | drivers/media/video/gspca/gspca.c | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/drivers/media/video/gspca/gspca.c b/drivers/media/video/gspca/gspca.c index 2a416cf205aa..ab053a26023e 100644 --- a/drivers/media/video/gspca/gspca.c +++ b/drivers/media/video/gspca/gspca.c | |||
@@ -834,7 +834,16 @@ static int vidioc_querycap(struct file *file, void *priv, | |||
834 | 834 | ||
835 | memset(cap, 0, sizeof *cap); | 835 | memset(cap, 0, sizeof *cap); |
836 | strncpy(cap->driver, gspca_dev->sd_desc->name, sizeof cap->driver); | 836 | strncpy(cap->driver, gspca_dev->sd_desc->name, sizeof cap->driver); |
837 | strncpy(cap->card, gspca_dev->cam.dev_name, sizeof cap->card); | 837 | /* strncpy(cap->card, gspca_dev->cam.dev_name, sizeof cap->card); */ |
838 | if (gspca_dev->dev->product != NULL) { | ||
839 | strncpy(cap->card, gspca_dev->dev->product, | ||
840 | sizeof cap->card); | ||
841 | } else { | ||
842 | snprintf(cap->card, sizeof cap->card, | ||
843 | "USB Camera (%04x:%04x)", | ||
844 | le16_to_cpu(gspca_dev->dev->descriptor.idVendor), | ||
845 | le16_to_cpu(gspca_dev->dev->descriptor.idProduct)); | ||
846 | } | ||
838 | strncpy(cap->bus_info, gspca_dev->dev->bus->bus_name, | 847 | strncpy(cap->bus_info, gspca_dev->dev->bus->bus_name, |
839 | sizeof cap->bus_info); | 848 | sizeof cap->bus_info); |
840 | cap->version = DRIVER_VERSION_NUMBER; | 849 | cap->version = DRIVER_VERSION_NUMBER; |