ehci: no conditional compilation for interestingness
authorOliver Neukum <oneukum@suse.de>
Mon, 18 Nov 2013 12:23:01 +0000 (13:23 +0100)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Tue, 3 Dec 2013 18:25:22 +0000 (10:25 -0800)
Simple elemination of the conditional compilation

Signed-off-by: Oliver Neukum <oneukum@suse.de>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/usb/host/ehci-hub.c

index 835fc08..47b858f 100644 (file)
@@ -1114,10 +1114,8 @@ static int ehci_hub_control (
                if (test_bit(wIndex, &ehci->port_c_suspend))
                        status |= USB_PORT_STAT_C_SUSPEND << 16;
 
-#ifndef        VERBOSE_DEBUG
-       if (status & ~0xffff)   /* only if wPortChange is interesting */
-#endif
-               dbg_port (ehci, "GetStatus", wIndex + 1, temp);
+               if (status & ~0xffff)   /* only if wPortChange is interesting */
+                       dbg_port(ehci, "GetStatus", wIndex + 1, temp);
                put_unaligned_le32(status, buf);
                break;
        case SetHubFeature: