ChangeSet 1.946.3.8, 2002/12/26 13:57:20-08:00, [EMAIL PROTECTED]

[PATCH] USB: convert empeg driver to use dev_err() and dev_info() macros


diff -Nru a/drivers/usb/serial/empeg.c b/drivers/usb/serial/empeg.c
--- a/drivers/usb/serial/empeg.c        Fri Dec 27 23:57:48 2002
+++ b/drivers/usb/serial/empeg.c        Fri Dec 27 23:57:48 2002
@@ -181,7 +181,7 @@
        result = usb_submit_urb(port->read_urb, GFP_KERNEL);
 
        if (result)
-               err("%s - failed submitting read urb, error %d", __FUNCTION__, result);
+               dev_err(port->dev, "%s - failed submitting read urb, error %d\n", 
+__FUNCTION__, result);
 
        return result;
 }
@@ -205,7 +205,7 @@
                usb_unlink_urb (port->read_urb);
        }
        /* Uncomment the following line if you want to see some statistics in your 
syslog */
-       /* info ("Bytes In = %d  Bytes Out = %d", bytes_in, bytes_out); */
+       /* dev_info (port->dev, "Bytes In = %d  Bytes Out = %d\n", bytes_in, 
+bytes_out); */
 }
 
 
@@ -248,7 +248,7 @@
                if (urb->transfer_buffer == NULL) {
                        urb->transfer_buffer = kmalloc (URB_TRANSFER_BUFFER_SIZE, 
GFP_ATOMIC);
                        if (urb->transfer_buffer == NULL) {
-                               err("%s no more kernel memory...", __FUNCTION__);
+                               dev_err(port->dev, "%s no more kernel memory...\n", 
+__FUNCTION__);
                                goto exit;
                        }
                }
@@ -278,7 +278,7 @@
                /* send it down the pipe */
                status = usb_submit_urb(urb, GFP_ATOMIC);
                if (status) {
-                       err("%s - usb_submit_urb(write bulk) failed with status = %d", 
__FUNCTION__, status);
+                       dev_err(port->dev, "%s - usb_submit_urb(write bulk) failed 
+with status = %d\n", __FUNCTION__, status);
                        bytes_sent = status;
                        break;
                }
@@ -426,7 +426,7 @@
        result = usb_submit_urb(port->read_urb, GFP_ATOMIC);
 
        if (result)
-               err("%s - failed resubmitting read urb, error %d", __FUNCTION__, 
result);
+               dev_err(urb->dev->dev, "%s - failed resubmitting read urb, error 
+%d\n", __FUNCTION__, result);
 
        return;
 
@@ -451,7 +451,7 @@
        result = usb_submit_urb(port->read_urb, GFP_ATOMIC);
 
        if (result)
-               err("%s - failed submitting read urb, error %d", __FUNCTION__, result);
+               dev_err(port->dev, "%s - failed submitting read urb, error %d\n", 
+__FUNCTION__, result);
 
        return;
 }


-------------------------------------------------------
This sf.net email is sponsored by:ThinkGeek
Welcome to geek heaven.
http://thinkgeek.com/sf
_______________________________________________
[EMAIL PROTECTED]
To unsubscribe, use the last form field at:
https://lists.sourceforge.net/lists/listinfo/linux-usb-devel

Reply via email to