summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGreg Kroah-Hartman <gregkh@linuxfoundation.org>2013-03-18 15:56:05 -0700
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2013-03-18 15:56:05 -0700
commit2726e202f7f54e69f95948f5015d39840c47e1b6 (patch)
tree5d98d5c4bec3fb3e014e77204b68430a3e99e9a8
parent2a40f324541ee61c22146214349c2ce9f5c30bcf (diff)
parentf8264340e694604863255cc0276491d17c402390 (diff)
downloadop-kernel-dev-2726e202f7f54e69f95948f5015d39840c47e1b6.zip
op-kernel-dev-2726e202f7f54e69f95948f5015d39840c47e1b6.tar.gz
Merge tag 'for-usb-linus-2013-03-18' of git://git.kernel.org/pub/scm/linux/kernel/git/sarah/xhci into usb-linus
Sarah writes: xHCI bug fix for 3.9 Hi Greg, Here's one xHCI bug fix. We had two register bits flipped. Sarah Sharp
-rw-r--r--drivers/usb/host/xhci.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/usb/host/xhci.h b/drivers/usb/host/xhci.h
index f791bd0..2c510e4 100644
--- a/drivers/usb/host/xhci.h
+++ b/drivers/usb/host/xhci.h
@@ -206,8 +206,8 @@ struct xhci_op_regs {
/* bits 12:31 are reserved (and should be preserved on writes). */
/* IMAN - Interrupt Management Register */
-#define IMAN_IP (1 << 1)
-#define IMAN_IE (1 << 0)
+#define IMAN_IE (1 << 1)
+#define IMAN_IP (1 << 0)
/* USBSTS - USB status - status bitmasks */
/* HC not running - set to 1 when run/stop bit is cleared. */
OpenPOWER on IntegriCloud