[PATCH] USB: omninet: fix up debugging comments
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
This commit is contained in:
@@ -204,7 +204,7 @@ static void omninet_read_bulk_callback (struct urb *urb, struct pt_regs *regs)
|
|||||||
int i;
|
int i;
|
||||||
int result;
|
int result;
|
||||||
|
|
||||||
// dbg("omninet_read_bulk_callback");
|
dbg("%s - port %d", __FUNCTION__, port->number);
|
||||||
|
|
||||||
if (urb->status) {
|
if (urb->status) {
|
||||||
dbg("%s - nonzero read bulk status received: %d", __FUNCTION__, urb->status);
|
dbg("%s - nonzero read bulk status received: %d", __FUNCTION__, urb->status);
|
||||||
@@ -250,7 +250,7 @@ static int omninet_write (struct usb_serial_port *port, const unsigned char *buf
|
|||||||
|
|
||||||
int result;
|
int result;
|
||||||
|
|
||||||
// dbg("omninet_write port %d", port->number);
|
dbg("%s - port %d", __FUNCTION__, port->number);
|
||||||
|
|
||||||
if (count == 0) {
|
if (count == 0) {
|
||||||
dbg("%s - write request of 0 bytes", __FUNCTION__);
|
dbg("%s - write request of 0 bytes", __FUNCTION__);
|
||||||
@@ -302,7 +302,7 @@ static int omninet_write_room (struct usb_serial_port *port)
|
|||||||
if (wport->write_urb_busy)
|
if (wport->write_urb_busy)
|
||||||
room = wport->bulk_out_size - OMNINET_HEADERLEN;
|
room = wport->bulk_out_size - OMNINET_HEADERLEN;
|
||||||
|
|
||||||
// dbg("omninet_write_room returns %d", room);
|
dbg("%s - returns %d", __FUNCTION__, room);
|
||||||
|
|
||||||
return (room);
|
return (room);
|
||||||
}
|
}
|
||||||
@@ -312,7 +312,7 @@ static void omninet_write_bulk_callback (struct urb *urb, struct pt_regs *regs)
|
|||||||
/* struct omninet_header *header = (struct omninet_header *) urb->transfer_buffer; */
|
/* struct omninet_header *header = (struct omninet_header *) urb->transfer_buffer; */
|
||||||
struct usb_serial_port *port = (struct usb_serial_port *) urb->context;
|
struct usb_serial_port *port = (struct usb_serial_port *) urb->context;
|
||||||
|
|
||||||
// dbg("omninet_write_bulk_callback, port %0x\n", port);
|
dbg("%s - port %0x\n", __FUNCTION__, port->number);
|
||||||
|
|
||||||
port->write_urb_busy = 0;
|
port->write_urb_busy = 0;
|
||||||
if (urb->status) {
|
if (urb->status) {
|
||||||
@@ -321,8 +321,6 @@ static void omninet_write_bulk_callback (struct urb *urb, struct pt_regs *regs)
|
|||||||
}
|
}
|
||||||
|
|
||||||
schedule_work(&port->work);
|
schedule_work(&port->work);
|
||||||
|
|
||||||
// dbg("omninet_write_bulk_callback, tty %0x\n", tty);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user