diff options
author | Oliver Neukum <oneukum@suse.de> | 2013-11-18 07:23:02 -0500 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2013-12-03 13:25:22 -0500 |
commit | 991fb3daac946441dbf4c237b2dd4d6c11fff633 (patch) | |
tree | e8cc7afea625c04d71daf0039a16c77ce45c8d36 /drivers/usb/host/ehci-hcd.c | |
parent | bbcd5cab03e61f69d50a1535ff2646f9698b9760 (diff) |
ehci: Remove debugging at every interrupt
This is overkill. Just removeit.
Signed-off-by: Oliver Neukum <oneukum@suse.de>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/usb/host/ehci-hcd.c')
-rw-r--r-- | drivers/usb/host/ehci-hcd.c | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/drivers/usb/host/ehci-hcd.c b/drivers/usb/host/ehci-hcd.c index e8ba4c44223a..b57e997eb716 100644 --- a/drivers/usb/host/ehci-hcd.c +++ b/drivers/usb/host/ehci-hcd.c | |||
@@ -714,13 +714,6 @@ static irqreturn_t ehci_irq (struct usb_hcd *hcd) | |||
714 | cmd = ehci_readl(ehci, &ehci->regs->command); | 714 | cmd = ehci_readl(ehci, &ehci->regs->command); |
715 | bh = 0; | 715 | bh = 0; |
716 | 716 | ||
717 | #ifdef VERBOSE_DEBUG | ||
718 | /* unrequested/ignored: Frame List Rollover */ | ||
719 | dbg_status (ehci, "irq", status); | ||
720 | #endif | ||
721 | |||
722 | /* INT, ERR, and IAA interrupt rates can be throttled */ | ||
723 | |||
724 | /* normal [4.15.1.2] or error [4.15.1.1] completion */ | 717 | /* normal [4.15.1.2] or error [4.15.1.1] completion */ |
725 | if (likely ((status & (STS_INT|STS_ERR)) != 0)) { | 718 | if (likely ((status & (STS_INT|STS_ERR)) != 0)) { |
726 | if (likely ((status & STS_ERR) == 0)) | 719 | if (likely ((status & STS_ERR) == 0)) |