Commit 01295448 authored by YAMANE Toshiaki's avatar YAMANE Toshiaki Committed by Greg Kroah-Hartman

staging/serqt_usb2: fixed line over issue in serqt_usb2.c

Fixed a description of the procedure call dev_dbg().
Signed-off-by: default avatarYAMANE Toshiaki <yamanetoshi@gmail.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 0093e5f8
...@@ -272,7 +272,8 @@ static void qt_write_bulk_callback(struct urb *urb) ...@@ -272,7 +272,8 @@ static void qt_write_bulk_callback(struct urb *urb)
status = urb->status; status = urb->status;
if (status) { if (status) {
dev_dbg(&urb->dev->dev, "nonzero write bulk status received:%d\n", status); dev_dbg(&urb->dev->dev,
"nonzero write bulk status received:%d\n", status);
return; return;
} }
...@@ -321,7 +322,8 @@ static void qt_read_bulk_callback(struct urb *urb) ...@@ -321,7 +322,8 @@ static void qt_read_bulk_callback(struct urb *urb)
/* index = MINOR(port->tty->device) - serial->minor; */ /* index = MINOR(port->tty->device) - serial->minor; */
index = tty->index - serial->minor; index = tty->index - serial->minor;
dev_dbg(&port->dev, "%s - port->RxHolding = %d\n", __func__, qt_port->RxHolding); dev_dbg(&port->dev,
"%s - port->RxHolding = %d\n", __func__, qt_port->RxHolding);
if (port_paranoia_check(port, __func__) != 0) { if (port_paranoia_check(port, __func__) != 0) {
qt_port->ReadBulkStopped = 1; qt_port->ReadBulkStopped = 1;
...@@ -333,7 +335,8 @@ static void qt_read_bulk_callback(struct urb *urb) ...@@ -333,7 +335,8 @@ static void qt_read_bulk_callback(struct urb *urb)
if (qt_port->closePending == 1) { if (qt_port->closePending == 1) {
/* Were closing , stop reading */ /* Were closing , stop reading */
dev_dbg(&port->dev, "%s - (qt_port->closepending == 1\n", __func__); dev_dbg(&port->dev,
"%s - (qt_port->closepending == 1\n", __func__);
qt_port->ReadBulkStopped = 1; qt_port->ReadBulkStopped = 1;
goto exit; goto exit;
} }
...@@ -912,10 +915,14 @@ static int qt_open(struct tty_struct *tty, ...@@ -912,10 +915,14 @@ static int qt_open(struct tty_struct *tty,
dev_dbg(&port->dev, "port number is %d\n", port->number); dev_dbg(&port->dev, "port number is %d\n", port->number);
dev_dbg(&port->dev, "serial number is %d\n", port->serial->minor); dev_dbg(&port->dev, "serial number is %d\n", port->serial->minor);
dev_dbg(&port->dev, "Bulkin endpoint is %d\n", port->bulk_in_endpointAddress); dev_dbg(&port->dev,
dev_dbg(&port->dev, "BulkOut endpoint is %d\n", port->bulk_out_endpointAddress); "Bulkin endpoint is %d\n", port->bulk_in_endpointAddress);
dev_dbg(&port->dev, "Interrupt endpoint is %d\n", port->interrupt_in_endpointAddress); dev_dbg(&port->dev,
dev_dbg(&port->dev, "port's number in the device is %d\n", quatech_port->port_num); "BulkOut endpoint is %d\n", port->bulk_out_endpointAddress);
dev_dbg(&port->dev, "Interrupt endpoint is %d\n",
port->interrupt_in_endpointAddress);
dev_dbg(&port->dev, "port's number in the device is %d\n",
quatech_port->port_num);
quatech_port->read_urb = port->read_urb; quatech_port->read_urb = port->read_urb;
/* set up our bulk in urb */ /* set up our bulk in urb */
...@@ -928,7 +935,8 @@ static int qt_open(struct tty_struct *tty, ...@@ -928,7 +935,8 @@ static int qt_open(struct tty_struct *tty,
quatech_port->read_urb->transfer_buffer_length, quatech_port->read_urb->transfer_buffer_length,
qt_read_bulk_callback, quatech_port); qt_read_bulk_callback, quatech_port);
dev_dbg(&port->dev, "qt_open: bulkin endpoint is %d\n", port->bulk_in_endpointAddress); dev_dbg(&port->dev, "qt_open: bulkin endpoint is %d\n",
port->bulk_in_endpointAddress);
quatech_port->read_urb_busy = true; quatech_port->read_urb_busy = true;
result = usb_submit_urb(quatech_port->read_urb, GFP_KERNEL); result = usb_submit_urb(quatech_port->read_urb, GFP_KERNEL);
if (result) { if (result) {
...@@ -1021,15 +1029,18 @@ static void qt_close(struct usb_serial_port *port) ...@@ -1021,15 +1029,18 @@ static void qt_close(struct usb_serial_port *port)
/* Close uart channel */ /* Close uart channel */
status = qt_close_channel(serial, index); status = qt_close_channel(serial, index);
if (status < 0) if (status < 0)
dev_dbg(&port->dev, "%s - port %d qt_close_channel failed.\n", __func__, port->number); dev_dbg(&port->dev,
"%s - port %d qt_close_channel failed.\n",
__func__, port->number);
port0->open_ports--; port0->open_ports--;
dev_dbg(&port->dev, "qt_num_open_ports in close%d:in port%d\n", port0->open_ports, port->number); dev_dbg(&port->dev, "qt_num_open_ports in close%d:in port%d\n",
port0->open_ports, port->number);
if (port0->open_ports == 0) { if (port0->open_ports == 0) {
if (serial->port[0]->interrupt_in_urb) { if (serial->port[0]->interrupt_in_urb) {
dev_dbg(&port->dev, "%s", "Shutdown interrupt_in_urb\n"); dev_dbg(&port->dev, "Shutdown interrupt_in_urb\n");
usb_kill_urb(serial->port[0]->interrupt_in_urb); usb_kill_urb(serial->port[0]->interrupt_in_urb);
} }
...@@ -1053,7 +1064,8 @@ static int qt_write(struct tty_struct *tty, struct usb_serial_port *port, ...@@ -1053,7 +1064,8 @@ static int qt_write(struct tty_struct *tty, struct usb_serial_port *port,
return -ENODEV; return -ENODEV;
if (count == 0) { if (count == 0) {
dev_dbg(&port->dev, "%s - write request of 0 bytes\n", __func__); dev_dbg(&port->dev,
"%s - write request of 0 bytes\n", __func__);
return 0; return 0;
} }
...@@ -1080,7 +1092,8 @@ static int qt_write(struct tty_struct *tty, struct usb_serial_port *port, ...@@ -1080,7 +1092,8 @@ static int qt_write(struct tty_struct *tty, struct usb_serial_port *port,
/* send the data out the bulk port */ /* send the data out the bulk port */
result = usb_submit_urb(port->write_urb, GFP_ATOMIC); result = usb_submit_urb(port->write_urb, GFP_ATOMIC);
if (result) if (result)
dev_dbg(&port->dev, "%s - failed submitting write urb, error %d\n", dev_dbg(&port->dev,
"%s - failed submitting write urb, error %d\n",
__func__, result); __func__, result);
else else
result = count; result = count;
...@@ -1163,7 +1176,8 @@ static int qt_ioctl(struct tty_struct *tty, ...@@ -1163,7 +1176,8 @@ static int qt_ioctl(struct tty_struct *tty,
return 0; return 0;
} }
dev_dbg(&port->dev, "%s -No ioctl for that one. port = %d\n", __func__, port->number); dev_dbg(&port->dev, "%s -No ioctl for that one. port = %d\n",
__func__, port->number);
return -ENOIOCTLCMD; return -ENOIOCTLCMD;
} }
...@@ -1238,7 +1252,8 @@ static void qt_set_termios(struct tty_struct *tty, ...@@ -1238,7 +1252,8 @@ static void qt_set_termios(struct tty_struct *tty,
/* Now determine flow control */ /* Now determine flow control */
if (cflag & CRTSCTS) { if (cflag & CRTSCTS) {
dev_dbg(&port->dev, "%s - Enabling HW flow control port %d\n", __func__, port->number); dev_dbg(&port->dev, "%s - Enabling HW flow control port %d\n",
__func__, port->number);
/* Enable RTS/CTS flow control */ /* Enable RTS/CTS flow control */
status = BoxSetHW_FlowCtrl(port->serial, index, 1); status = BoxSetHW_FlowCtrl(port->serial, index, 1);
...@@ -1249,7 +1264,9 @@ static void qt_set_termios(struct tty_struct *tty, ...@@ -1249,7 +1264,9 @@ static void qt_set_termios(struct tty_struct *tty,
} }
} else { } else {
/* Disable RTS/CTS flow control */ /* Disable RTS/CTS flow control */
dev_dbg(&port->dev, "%s - disabling HW flow control port %d\n", __func__, port->number); dev_dbg(&port->dev,
"%s - disabling HW flow control port %d\n",
__func__, port->number);
status = BoxSetHW_FlowCtrl(port->serial, index, 0); status = BoxSetHW_FlowCtrl(port->serial, index, 0);
if (status < 0) { if (status < 0) {
...@@ -1268,17 +1285,21 @@ static void qt_set_termios(struct tty_struct *tty, ...@@ -1268,17 +1285,21 @@ static void qt_set_termios(struct tty_struct *tty,
BoxSetSW_FlowCtrl(port->serial, index, stop_char, BoxSetSW_FlowCtrl(port->serial, index, stop_char,
start_char); start_char);
if (status < 0) if (status < 0)
dev_dbg(&port->dev, "BoxSetSW_FlowCtrl (enabled) failed\n"); dev_dbg(&port->dev,
"BoxSetSW_FlowCtrl (enabled) failed\n");
} else { } else {
/* disable SW flow control */ /* disable SW flow control */
status = BoxDisable_SW_FlowCtrl(port->serial, index); status = BoxDisable_SW_FlowCtrl(port->serial, index);
if (status < 0) if (status < 0)
dev_dbg(&port->dev, "BoxSetSW_FlowCtrl (diabling) failed\n"); dev_dbg(&port->dev,
"BoxSetSW_FlowCtrl (diabling) failed\n");
} }
termios->c_cflag &= ~CMSPAR; termios->c_cflag &= ~CMSPAR;
/* FIXME: Error cases should be returning the actual bits changed only */ /* FIXME:
Error cases should be returning the actual bits changed only
*/
} }
static void qt_break(struct tty_struct *tty, int break_state) static void qt_break(struct tty_struct *tty, int break_state)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment