mirror of
https://github.com/FEX-Emu/linux.git
synced 2025-01-08 02:21:18 +00:00
usb: misc: remove unnecessary code
'val' is an unsigned variable, and less-than-zero comparison of an unsigned variable is never true. Addresses-Coverity-ID: 1230256 Signed-off-by: Gustavo A. R. Silva <garsilva@embeddedor.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
78f74f75bd
commit
b7963dac68
@ -222,7 +222,7 @@ static ssize_t u1_timeout_store(struct device *dev,
|
||||
return ret;
|
||||
}
|
||||
|
||||
if (val < 0 || val > 127)
|
||||
if (val > 127)
|
||||
return -EINVAL;
|
||||
|
||||
ret = lvs_rh_set_port_feature(hdev, lvs->portnum | (val << 8),
|
||||
|
Loading…
Reference in New Issue
Block a user