diff options
author | Mauro Carvalho Chehab <m.chehab@samsung.com> | 2014-07-27 21:27:27 +0200 |
---|---|---|
committer | Mauro Carvalho Chehab <m.chehab@samsung.com> | 2014-07-27 21:53:40 +0200 |
commit | 139d28826b8e2bc7a9232fde0d2f14812914f501 (patch) | |
tree | 55b67b5188d4c47686bb1a54e3a443db1da92cc3 /drivers/media | |
parent | [media] rc: Add support for decoding XMP protocol (diff) | |
download | linux-139d28826b8e2bc7a9232fde0d2f14812914f501.tar.xz linux-139d28826b8e2bc7a9232fde0d2f14812914f501.zip |
[media] cx231xx: Fix the max number of interfaces
The max number of interfaces was read from the wrong descriptor.
Signed-off-by: Mauro Carvalho Chehab <m.chehab@samsung.com>
Diffstat (limited to 'drivers/media')
-rw-r--r-- | drivers/media/usb/cx231xx/cx231xx-cards.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/drivers/media/usb/cx231xx/cx231xx-cards.c b/drivers/media/usb/cx231xx/cx231xx-cards.c index 2ee03e4ddd86..6d785db96d99 100644 --- a/drivers/media/usb/cx231xx/cx231xx-cards.c +++ b/drivers/media/usb/cx231xx/cx231xx-cards.c @@ -1185,8 +1185,7 @@ static int cx231xx_usb_probe(struct usb_interface *interface, dev->vbi_or_sliced_cc_mode = 0; /* get maximum no.of IAD interfaces */ - assoc_desc = udev->actconfig->intf_assoc[0]; - dev->max_iad_interface_count = assoc_desc->bInterfaceCount; + dev->max_iad_interface_count = udev->config->desc.bNumInterfaces; /* init CIR module TBD */ |