Commit 87c62985 authored by Malcolm Priestley's avatar Malcolm Priestley Committed by Greg Kroah-Hartman

staging: vt6656: no need to bIndicateReceive when no bytes to read.

Signed-off-by: default avatarMalcolm Priestley <tvboxspy@gmail.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent fbce428a
...@@ -575,7 +575,8 @@ s_nsBulkInUsbIoCompleteRead( ...@@ -575,7 +575,8 @@ s_nsBulkInUsbIoCompleteRead(
// MP_SET_FLAG(pDevice, fMP_DISCONNECTED); // MP_SET_FLAG(pDevice, fMP_DISCONNECTED);
// } // }
} else { } else {
bIndicateReceive = TRUE; if (bytesRead)
bIndicateReceive = TRUE;
pDevice->ulBulkInContCRCError = 0; pDevice->ulBulkInContCRCError = 0;
pDevice->ulBulkInBytesRead += bytesRead; pDevice->ulBulkInBytesRead += bytesRead;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment