mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-11-15 00:04:15 +08:00
USB: serial: mxuport: drop short control-transfer check
There's no need to check for short control transfers when sending data so remove the redundant sanity check. Reviewed-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org> Signed-off-by: Johan Hovold <johan@kernel.org>
This commit is contained in:
parent
90fa41ee4a
commit
f7de9b6426
@ -261,13 +261,6 @@ static int mxuport_send_ctrl_data_urb(struct usb_serial *serial,
|
||||
return status;
|
||||
}
|
||||
|
||||
if (status != size) {
|
||||
dev_err(&serial->interface->dev,
|
||||
"%s - short write (%d / %zd)\n",
|
||||
__func__, status, size);
|
||||
return -EIO;
|
||||
}
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user