mirror of
https://github.com/torvalds/linux.git
synced 2024-11-13 23:51:39 +00:00
V4L/DVB: tm6000: Fix copybuf continue logic
Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
This commit is contained in:
parent
23ba94633d
commit
d0669c872f
@ -285,7 +285,7 @@ static int copy_streams(u8 *data, unsigned long len,
|
||||
break;
|
||||
case TM6000_URB_MSG_AUDIO:
|
||||
case TM6000_URB_MSG_PTS:
|
||||
cpysize = pktsize; /* Size is always 180 bytes */
|
||||
size = pktsize; /* Size is always 180 bytes */
|
||||
break;
|
||||
}
|
||||
} else {
|
||||
@ -315,7 +315,7 @@ static int copy_streams(u8 *data, unsigned long len,
|
||||
break;
|
||||
}
|
||||
}
|
||||
if (ptr + pktsize > endp) {
|
||||
if (cpysize < size) {
|
||||
/* End of URB packet, but cmd processing is not
|
||||
* complete. Preserve the state for a next packet
|
||||
*/
|
||||
@ -323,7 +323,7 @@ static int copy_streams(u8 *data, unsigned long len,
|
||||
dev->isoc_ctl.size = size - cpysize;
|
||||
dev->isoc_ctl.cmd = cmd;
|
||||
dev->isoc_ctl.pktsize = pktsize - (endp - ptr);
|
||||
ptr += endp - ptr;
|
||||
ptr += cpysize;
|
||||
} else {
|
||||
dev->isoc_ctl.cmd = 0;
|
||||
ptr += pktsize;
|
||||
|
Loading…
Reference in New Issue
Block a user