svn commit: r254438 - head/sys/dev/usb/controller

Hans Petter Selasky hselasky at FreeBSD.org
Sat Aug 17 06:29:46 UTC 2013


Author: hselasky
Date: Sat Aug 17 06:29:45 2013
New Revision: 254438
URL: http://svnweb.freebsd.org/changeset/base/254438

Log:
  Fix some USB controller names according to pciconf output.
  
  MFC after:	1 week
  Submitted by:	Dmitry Luhtionov <dmitryluhtionov at gmail.com>

Modified:
  head/sys/dev/usb/controller/ehci_pci.c
  head/sys/dev/usb/controller/ohci_pci.c

Modified: head/sys/dev/usb/controller/ehci_pci.c
==============================================================================
--- head/sys/dev/usb/controller/ehci_pci.c	Sat Aug 17 04:41:35 2013	(r254437)
+++ head/sys/dev/usb/controller/ehci_pci.c	Sat Aug 17 06:29:45 2013	(r254438)
@@ -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: head/sys/dev/usb/controller/ohci_pci.c
==============================================================================
--- head/sys/dev/usb/controller/ohci_pci.c	Sat Aug 17 04:41:35 2013	(r254437)
+++ head/sys/dev/usb/controller/ohci_pci.c	Sat Aug 17 06:29:45 2013	(r254438)
@@ -154,6 +154,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