staging: most: fix USB babble on IN pipe
This patch prevents the HDM USB from submitting an URB with a buffer size unaligned to 512 bytes to the USB subsystem. Signed-off-by: Andrey Shvetsov <andrey.shvetsov@k2l.de> Signed-off-by: Christian Gromm <christian.gromm@microchip.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
3032ab931b
commit
9161e9311c
1 changed files with 2 additions and 1 deletions
|
@ -711,7 +711,7 @@ static int hdm_enqueue(struct most_interface *iface, int channel, struct mbo *mb
|
||||||
usb_rcvbulkpipe(mdev->usb_device,
|
usb_rcvbulkpipe(mdev->usb_device,
|
||||||
mdev->ep_address[channel]),
|
mdev->ep_address[channel]),
|
||||||
virt_address,
|
virt_address,
|
||||||
length,
|
length + conf->extra_len,
|
||||||
hdm_read_completion,
|
hdm_read_completion,
|
||||||
mbo);
|
mbo);
|
||||||
}
|
}
|
||||||
|
@ -771,6 +771,7 @@ static int hdm_configure_channel(struct most_interface *iface, int channel,
|
||||||
!((conf->data_type == MOST_CH_ISOC_AVP) &&
|
!((conf->data_type == MOST_CH_ISOC_AVP) &&
|
||||||
(conf->packets_per_xact != 0xFF))) {
|
(conf->packets_per_xact != 0xFF))) {
|
||||||
mdev->padding_active[channel] = false;
|
mdev->padding_active[channel] = false;
|
||||||
|
conf->extra_len = 0;
|
||||||
goto exit;
|
goto exit;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue