diff options
Diffstat (limited to 'drivers/usb/serial/omninet.c')
-rw-r--r-- | drivers/usb/serial/omninet.c | 10 |
1 files changed, 4 insertions, 6 deletions
diff --git a/drivers/usb/serial/omninet.c b/drivers/usb/serial/omninet.c index 762d8ff9a1e4..4d40704dea2c 100644 --- a/drivers/usb/serial/omninet.c +++ b/drivers/usb/serial/omninet.c | |||
@@ -204,7 +204,7 @@ static void omninet_read_bulk_callback (struct urb *urb, struct pt_regs *regs) | |||
204 | int i; | 204 | int i; |
205 | int result; | 205 | int result; |
206 | 206 | ||
207 | // dbg("omninet_read_bulk_callback"); | 207 | dbg("%s - port %d", __FUNCTION__, port->number); |
208 | 208 | ||
209 | if (urb->status) { | 209 | if (urb->status) { |
210 | dbg("%s - nonzero read bulk status received: %d", __FUNCTION__, urb->status); | 210 | 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 | |||
250 | 250 | ||
251 | int result; | 251 | int result; |
252 | 252 | ||
253 | // dbg("omninet_write port %d", port->number); | 253 | dbg("%s - port %d", __FUNCTION__, port->number); |
254 | 254 | ||
255 | if (count == 0) { | 255 | if (count == 0) { |
256 | dbg("%s - write request of 0 bytes", __FUNCTION__); | 256 | dbg("%s - write request of 0 bytes", __FUNCTION__); |
@@ -302,7 +302,7 @@ static int omninet_write_room (struct usb_serial_port *port) | |||
302 | if (wport->write_urb_busy) | 302 | if (wport->write_urb_busy) |
303 | room = wport->bulk_out_size - OMNINET_HEADERLEN; | 303 | room = wport->bulk_out_size - OMNINET_HEADERLEN; |
304 | 304 | ||
305 | // dbg("omninet_write_room returns %d", room); | 305 | dbg("%s - returns %d", __FUNCTION__, room); |
306 | 306 | ||
307 | return (room); | 307 | return (room); |
308 | } | 308 | } |
@@ -312,7 +312,7 @@ static void omninet_write_bulk_callback (struct urb *urb, struct pt_regs *regs) | |||
312 | /* struct omninet_header *header = (struct omninet_header *) urb->transfer_buffer; */ | 312 | /* struct omninet_header *header = (struct omninet_header *) urb->transfer_buffer; */ |
313 | struct usb_serial_port *port = (struct usb_serial_port *) urb->context; | 313 | struct usb_serial_port *port = (struct usb_serial_port *) urb->context; |
314 | 314 | ||
315 | // dbg("omninet_write_bulk_callback, port %0x\n", port); | 315 | dbg("%s - port %0x\n", __FUNCTION__, port->number); |
316 | 316 | ||
317 | port->write_urb_busy = 0; | 317 | port->write_urb_busy = 0; |
318 | if (urb->status) { | 318 | if (urb->status) { |
@@ -321,8 +321,6 @@ static void omninet_write_bulk_callback (struct urb *urb, struct pt_regs *regs) | |||
321 | } | 321 | } |
322 | 322 | ||
323 | schedule_work(&port->work); | 323 | schedule_work(&port->work); |
324 | |||
325 | // dbg("omninet_write_bulk_callback, tty %0x\n", tty); | ||
326 | } | 324 | } |
327 | 325 | ||
328 | 326 | ||