USB: mos7840: remove redundant condition
This patch removes redundant condition. (length && length > 5) can be reduced to a single evaluation. Tested by compilation only. Caught by cppcheck. Signed-off-by: Geyslan G. Bem <geyslan@gmail.com> Signed-off-by: Johan Hovold <johan@kernel.org>
This commit is contained in:

committed by
Johan Hovold

parent
232dce89b5
commit
365a0442f6
@@ -635,7 +635,7 @@ static void mos7840_interrupt_callback(struct urb *urb)
|
||||
* Byte 4 IIR Port 4 (port.number is 3)
|
||||
* Byte 5 FIFO status for both */
|
||||
|
||||
if (length && length > 5) {
|
||||
if (length > 5) {
|
||||
dev_dbg(&urb->dev->dev, "%s", "Wrong data !!!\n");
|
||||
return;
|
||||
}
|
||||
|
Reference in New Issue
Block a user