]> Pileus Git - ~andy/linux/commitdiff
USB: file.c: remove dbg() usage
authorGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Wed, 2 May 2012 04:33:35 +0000 (21:33 -0700)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Wed, 2 May 2012 04:33:35 +0000 (21:33 -0700)
dbg() was a very old USB-specific macro that should no longer
be used. This patch removes it from being used in the driver
and uses dev_dbg() instead.

CC: Al Viro <viro@zeniv.linux.org.uk>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/usb/core/file.c

index d95760de9e8ba3dfaf329ac16a6635aaad72ea68..e673b26e598f3391627550bff784c21f2be97486 100644 (file)
@@ -183,7 +183,7 @@ int usb_register_dev(struct usb_interface *intf,
        if (retval)
                return retval;
 
-       dev_dbg(&intf->dev, "looking for a minor, starting at %d", minor_base);
+       dev_dbg(&intf->dev, "looking for a minor, starting at %d\n", minor_base);
 
        down_write(&minor_rwsem);
        for (minor = minor_base; minor < MAX_USB_MINORS; ++minor) {
@@ -239,7 +239,7 @@ void usb_deregister_dev(struct usb_interface *intf,
        if (intf->minor == -1)
                return;
 
-       dbg ("removing %d minor", intf->minor);
+       dev_dbg(&intf->dev, "removing %d minor\n", intf->minor);
 
        down_write(&minor_rwsem);
        usb_minors[intf->minor] = NULL;