Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 222811
b: refs/heads/master
c: a85b4e7
h: refs/heads/master
i:
  222809: da53f6b
  222807: ad27064
v: v3
  • Loading branch information
Brian J. Tarricone authored and Greg Kroah-Hartman committed Nov 30, 2010
1 parent 3a553d4 commit 5db8707
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 1 deletion.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 6fdbad8021151a9e93af8159a6232c8f26415c09
refs/heads/master: a85b4e7f4481c5a1ca89fa63c9c871151965075e
12 changes: 12 additions & 0 deletions trunk/drivers/usb/host/ehci-pci.c
Original file line number Diff line number Diff line change
Expand Up @@ -161,6 +161,18 @@ static int ehci_pci_setup(struct usb_hcd *hcd)
if (pdev->revision < 0xa4)
ehci->no_selective_suspend = 1;
break;

/* MCP89 chips on the MacBookAir3,1 give EPROTO when
* fetching device descriptors unless LPM is disabled.
* There are also intermittent problems enumerating
* devices with PPCD enabled.
*/
case 0x0d9d:
ehci_info(ehci, "disable lpm/ppcd for nvidia mcp89");
ehci->has_lpm = 0;
ehci->has_ppcd = 0;
ehci->command &= ~CMD_PPCEE;
break;
}
break;
case PCI_VENDOR_ID_VIA:
Expand Down

0 comments on commit 5db8707

Please sign in to comment.