Skip site navigation (1)Skip section navigation (2)
Date:      Sat, 24 Aug 2013 07:19:57 +0000 (UTC)
From:      Hans Petter Selasky <hselasky@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-stable@freebsd.org, svn-src-stable-8@freebsd.org
Subject:   svn commit: r254762 - stable/8/sys/dev/usb/controller
Message-ID:  <201308240719.r7O7JvCY006991@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
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@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:



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201308240719.r7O7JvCY006991>