|
@@ -204,7 +204,7 @@ static void omninet_read_bulk_callback (struct urb *urb, struct pt_regs *regs)
|
|
|
int i;
|
|
|
int result;
|
|
|
|
|
|
-// dbg("omninet_read_bulk_callback");
|
|
|
+ dbg("%s - port %d", __FUNCTION__, port->number);
|
|
|
|
|
|
if (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;
|
|
|
|
|
|
-// dbg("omninet_write port %d", port->number);
|
|
|
+ dbg("%s - port %d", __FUNCTION__, port->number);
|
|
|
|
|
|
if (count == 0) {
|
|
|
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)
|
|
|
room = wport->bulk_out_size - OMNINET_HEADERLEN;
|
|
|
|
|
|
-// dbg("omninet_write_room returns %d", room);
|
|
|
+ dbg("%s - returns %d", __FUNCTION__, 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 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;
|
|
|
if (urb->status) {
|
|
@@ -321,8 +321,6 @@ static void omninet_write_bulk_callback (struct urb *urb, struct pt_regs *regs)
|
|
|
}
|
|
|
|
|
|
schedule_work(&port->work);
|
|
|
-
|
|
|
-// dbg("omninet_write_bulk_callback, tty %0x\n", tty);
|
|
|
}
|
|
|
|
|
|
|