From: Linus Torvalds Date: Mon, 20 Oct 2008 21:23:29 +0000 (-0700) Subject: USB: Fix unused label warnings in drivers/usb/host/ehci-hcd.c X-Git-Tag: v2.6.28-rc1~73 X-Git-Url: http://pilppa.com/gitweb/?a=commitdiff_plain;h=a9b6148d25f15ddfe9d7a7f3e526fdb64e7cf7da;p=linux-2.6-omap-h63xx.git USB: Fix unused label warnings in drivers/usb/host/ehci-hcd.c This gets rid of an annoying warning in ehci-hcd.c when DEBUG isn't enabled: warning: label 'err_debug' defined but not used by moving it inside the already-existing #ifdef DEBUG, so that it matches the goto. And now my regular build is warning-free again. Signed-off-by: Linus Torvalds --- diff --git a/drivers/usb/host/ehci-hcd.c b/drivers/usb/host/ehci-hcd.c index d343afacb0b..15a803b206b 100644 --- a/drivers/usb/host/ehci-hcd.c +++ b/drivers/usb/host/ehci-hcd.c @@ -1111,8 +1111,8 @@ clean0: #ifdef DEBUG debugfs_remove(ehci_debug_root); ehci_debug_root = NULL; -#endif err_debug: +#endif clear_bit(USB_EHCI_LOADED, &usb_hcds_loaded); return retval; }