Message ID | 20241025061711.198933-7-tony467913@gmail.com |
---|---|
State | New |
Headers | show |
Series | [v2,1/6] driver: usb: serial: mos7840: fix style warnings | expand |
diff --git a/drivers/usb/serial/mos7840.c b/drivers/usb/serial/mos7840.c index d2cae6619..e3100ebbc 100644 --- a/drivers/usb/serial/mos7840.c +++ b/drivers/usb/serial/mos7840.c @@ -920,8 +920,9 @@ static int mos7840_write(struct tty_struct *tty, struct usb_serial_port *port, if (status) { mos7840_port->busy[i] = 0; - dev_err_console(port, "%s - usb_submit_urb(write bulk) failed " - "with status = %d\n", __func__, status); + dev_err_console(port, + "%s - usb_submit_urb(write bulk) failed with status = %d\n", + __func__, status); bytes_sent = status; goto exit; }
fix the coding style warning: quoted string split across lines Signed-off-by: Tony Chung <tony467913@gmail.com> --- drivers/usb/serial/mos7840.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-)