diff options
author | joyw <joyw@nvidia.com> | 2013-10-23 11:20:34 +0800 |
---|---|---|
committer | Bharat Nihalani <bnihalani@nvidia.com> | 2013-10-28 01:13:17 -0700 |
commit | d01bea42308387395d7569a5253f8936de3dca30 (patch) | |
tree | bfd7db54e47d7c2494260c5dbb26a45bdb24d2d3 | |
parent | 9ff4716cceb88a19cf84a1d8d049085502069f3e (diff) |
Revert "usb: xhci: tegra: do not enable MSI interrupts"
This reverts commit cb7faaa3f37cf5d90aaefde7fef8da35ab99fc2b.
This change (cb7faa) will undefine all msi related functions
in xhci.c when we have CONFIG_TEGRA_XUSB_PLATFORM support.
This will break PCIE USB3 functionality.
Revert this fix and push a new solution for original issue.
Bug 1393117
Change-Id: I1804487b6b5cde2f0190580f07f986eda675c03f
Signed-off-by: joyw <joyw@nvidia.com>
Reviewed-on: http://git-master/r/303300
Reviewed-by: WK Tsai <wtsai@nvidia.com>
Reviewed-by: Bharat Nihalani <bnihalani@nvidia.com>
-rw-r--r-- | drivers/usb/host/xhci.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/usb/host/xhci.c b/drivers/usb/host/xhci.c index f24047ed5e3a..9ff6f812c1a0 100644 --- a/drivers/usb/host/xhci.c +++ b/drivers/usb/host/xhci.c @@ -189,7 +189,7 @@ int xhci_reset(struct xhci_hcd *xhci) return ret; } -#if defined(CONFIG_PCI) && !defined(CONFIG_TEGRA_XUSB_PLATFORM) +#ifdef CONFIG_PCI static int xhci_free_msi(struct xhci_hcd *xhci) { int i; |