]> git.openfabrics.org - ~shefty/rdma-dev.git/commitdiff
USB: ipaq.c: remove dbg() usage
authorGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Tue, 15 May 2012 23:27:20 +0000 (16:27 -0700)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Tue, 15 May 2012 23:27:20 +0000 (16:27 -0700)
dbg() is a usb-serial specific macro.  This patch converts
the ipaq.c driver to use dev_dbg() instead to tie into the
dynamic debug infrastructure.

CC: Rusty Russell <rusty@rustcorp.com.au>
CC: Johan Hovold <jhovold@gmail.com>
CC: Alan Stern <stern@rowland.harvard.edu>
CC: Mauro Carvalho Chehab <mchehab@redhat.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/usb/serial/ipaq.c

index bf440b12523cf88844fed6f767abc5ed8b5d7737..c85a7eb87d4e8ebe8f94fe3e2abfda1da5c6e1cf 100644 (file)
@@ -565,7 +565,7 @@ static int ipaq_calc_num_ports(struct usb_serial *serial)
         */
        int ipaq_num_ports = 1;
 
-       dbg("%s - numberofendpoints: %d", __FUNCTION__,
+       dev_dbg(&serial->dev->dev, "%s - numberofendpoints: %d\n", __func__,
                (int)serial->interface->cur_altsetting->desc.bNumEndpoints);
 
        /*
@@ -603,8 +603,9 @@ static int ipaq_startup(struct usb_serial *serial)
                return -ENODEV;
        }
 
-       dbg("%s - iPAQ module configured for %d ports",
-               __FUNCTION__, serial->num_ports);
+       dev_dbg(&serial->dev->dev,
+               "%s - iPAQ module configured for %d ports\n", __func__,
+               serial->num_ports);
 
        return usb_reset_configuration(serial->dev);
 }