diff options
author | Christian Löpke <loepke@edfritsch.de> | 2015-07-18 04:15:01 -0300 |
---|---|---|
committer | Mauro Carvalho Chehab <mchehab@osg.samsung.com> | 2015-08-11 14:43:23 -0300 |
commit | 3139f43f8eca4d3a8a0ffe3b0b9cd8ebe0e3be95 (patch) | |
tree | 7c5fccf0190cc2d4df6b70025689ca6488423ef8 /drivers | |
parent | dd6ff6a05b3d467acff47131759e15d40933656c (diff) | |
download | linux-3139f43f8eca4d3a8a0ffe3b0b9cd8ebe0e3be95.tar.bz2 |
[media] Technisat SkyStar USB HD,(DVB-S/S2) too much URBs for arm devices
Using 8 URBs results in a consecutive buffer allocation of too much
memory for some arm devices.
As we use isochronuous transfers the number of URBs can be reduced
without risking data-loss.
Signed-off-by: Christian Loepke <loepke@edfritsch.de>
Signed-off-by: Mauro Carvalho Chehab <mchehab@osg.samsung.com>
Diffstat (limited to 'drivers')
-rw-r--r-- | drivers/media/usb/dvb-usb/technisat-usb2.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/media/usb/dvb-usb/technisat-usb2.c b/drivers/media/usb/dvb-usb/technisat-usb2.c index 03f334d3a8f4..6c3c47722955 100644 --- a/drivers/media/usb/dvb-usb/technisat-usb2.c +++ b/drivers/media/usb/dvb-usb/technisat-usb2.c @@ -707,7 +707,7 @@ static struct dvb_usb_device_properties technisat_usb2_devices = { .stream = { .type = USB_ISOC, - .count = 8, + .count = 4, .endpoint = 0x2, .u = { .isoc = { |