Date: Sat, 17 Aug 2013 06:29:45 +0000 (UTC) From: Hans Petter Selasky <hselasky@FreeBSD.org> To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r254438 - head/sys/dev/usb/controller Message-ID: <201308170629.r7H6TjOn072081@svn.freebsd.org>
next in thread | raw e-mail | index | archive | help
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@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:
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201308170629.r7H6TjOn072081>