diff options
author | hselasky <hselasky@FreeBSD.org> | 2015-09-01 09:33:24 +0000 |
---|---|---|
committer | hselasky <hselasky@FreeBSD.org> | 2015-09-01 09:33:24 +0000 |
commit | 7a6ac1b312207b6793c1bcb4257b545e63528870 (patch) | |
tree | dee22cadc6f330129aa255399649611de090b702 /sys/dev/usb/controller/uhci_pci.c | |
parent | a047794b25e4ffea843508c1ebb71502679ef5e6 (diff) | |
download | FreeBSD-src-7a6ac1b312207b6793c1bcb4257b545e63528870.zip FreeBSD-src-7a6ac1b312207b6793c1bcb4257b545e63528870.tar.gz |
Add new PCI ID.
Submitted by: Dmitry Luhtionov <dmitryluhtionov@gmail.com>
MFC after: 1 month
PR: 202807
Diffstat (limited to 'sys/dev/usb/controller/uhci_pci.c')
-rw-r--r-- | sys/dev/usb/controller/uhci_pci.c | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/sys/dev/usb/controller/uhci_pci.c b/sys/dev/usb/controller/uhci_pci.c index 89fc983..cd08e89 100644 --- a/sys/dev/usb/controller/uhci_pci.c +++ b/sys/dev/usb/controller/uhci_pci.c @@ -77,6 +77,7 @@ __FBSDID("$FreeBSD$"); #include "usb_if.h" #define PCI_UHCI_VENDORID_INTEL 0x8086 +#define PCI_UHCI_VENDORID_HP 0x103c #define PCI_UHCI_VENDORID_VIA 0x1106 /* PIIX4E has no separate stepping */ @@ -222,6 +223,9 @@ uhci_pci_match(device_t self) case 0x76028086: return ("Intel 82372FB/82468GX USB controller"); + case 0x3309103c: + return ("HP iLO Standard Virtual USB controller"); + case 0x30381106: return ("VIA 83C572 USB controller"); @@ -309,6 +313,9 @@ uhci_pci_attach(device_t self) case PCI_UHCI_VENDORID_INTEL: sprintf(sc->sc_vendor, "Intel"); break; + case PCI_UHCI_VENDORID_HP: + sprintf(sc->sc_vendor, "HP"); + break; case PCI_UHCI_VENDORID_VIA: sprintf(sc->sc_vendor, "VIA"); break; |