USB: empeg.c: remove dbg() tracing calls
authorGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Thu, 3 May 2012 23:43:59 +0000 (16:43 -0700)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Thu, 3 May 2012 23:43:59 +0000 (16:43 -0700)
dbg() was used a lot a long time ago to trace code flow.  Now that we have
ftrace, this isn't needed at all, so remove these calls.

CC: Gary Brubaker <xavyer@ix.netcom.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/usb/serial/empeg.c

index 5b99fc0..615e380 100644 (file)
@@ -80,14 +80,12 @@ static int empeg_startup(struct usb_serial *serial)
 {
        int r;
 
-       dbg("%s", __func__);
-
        if (serial->dev->actconfig->desc.bConfigurationValue != 1) {
                dev_err(&serial->dev->dev, "active config #%d != 1 ??\n",
                        serial->dev->actconfig->desc.bConfigurationValue);
                return -ENODEV;
        }
-       dbg("%s - reset config", __func__);
+
        r = usb_reset_configuration(serial->dev);
 
        /* continue on with initialization */