svn commit: r254762 - stable/8/sys/dev/usb/controller
Hans Petter Selasky
hselasky at FreeBSD.org
Sat Aug 24 07:19:58 UTC 2013
Author: hselasky
Date: Sat Aug 24 07:19:57 2013
New Revision: 254762
URL: http://svnweb.freebsd.org/changeset/base/254762
Log:
MFC r254438:
Fix some USB controller names according to pciconf output.
Submitted by: Dmitry Luhtionov <dmitryluhtionov at gmail.com>
Modified:
stable/8/sys/dev/usb/controller/ehci_pci.c
stable/8/sys/dev/usb/controller/ohci_pci.c
Directory Properties:
stable/8/sys/dev/usb/ (props changed)
Modified: stable/8/sys/dev/usb/controller/ehci_pci.c
==============================================================================
--- stable/8/sys/dev/usb/controller/ehci_pci.c Sat Aug 24 07:17:28 2013 (r254761)
+++ stable/8/sys/dev/usb/controller/ehci_pci.c Sat Aug 24 07:19:57 2013 (r254762)
@@ -165,7 +165,7 @@ ehci_pci_match(device_t self)
case 0x00e810de:
return "NVIDIA nForce3 250 USB 2.0 controller";
case 0x005b10de:
- return "NVIDIA nForce4 USB 2.0 controller";
+ return "NVIDIA nForce CK804 USB 2.0 controller";
case 0x036d10de:
return "NVIDIA nForce MCP55 USB 2.0 controller";
case 0x03f210de:
Modified: stable/8/sys/dev/usb/controller/ohci_pci.c
==============================================================================
--- stable/8/sys/dev/usb/controller/ohci_pci.c Sat Aug 24 07:17:28 2013 (r254761)
+++ stable/8/sys/dev/usb/controller/ohci_pci.c Sat Aug 24 07:19:57 2013 (r254762)
@@ -152,6 +152,8 @@ ohci_pci_match(device_t self)
case 0x00d710de:
return ("nVidia nForce3 USB Controller");
+ case 0x005a10de:
+ return ("nVidia nForce CK804 USB Controller");
case 0x036c10de:
return ("nVidia nForce MCP55 USB Controller");
case 0x03f110de:
More information about the svn-src-all
mailing list