Commit f7de9b64 authored by Johan Hovold's avatar Johan Hovold
Browse files

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: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Signed-off-by: default avatarJohan Hovold <johan@kernel.org>
parent 90fa41ee
Loading
Loading
Loading
Loading
+0 −7
Original line number Diff line number Diff line
@@ -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;
}