View | Details | Raw Unified | Return to bug 202807
Collapse All | Expand All

(-)uhci_pci.c 2015-09-01 09:14:06.000000000 +0300 (+7 lines)
Lines 77-82 Link Here
77
#include "usb_if.h"
77
#include "usb_if.h"
78
78
79
#define    PCI_UHCI_VENDORID_INTEL        0x8086
79
#define    PCI_UHCI_VENDORID_INTEL        0x8086
80
#define    PCI_UHCI_VENDORID_HP        0x103c
80
#define    PCI_UHCI_VENDORID_VIA        0x1106
81
#define    PCI_UHCI_VENDORID_VIA        0x1106
81
82
82
/* PIIX4E has no separate stepping */
83
/* PIIX4E has no separate stepping */
Lines 222-227 Link Here
222
    case 0x76028086:
223
    case 0x76028086:
223
        return ("Intel 82372FB/82468GX USB controller");
224
        return ("Intel 82372FB/82468GX USB controller");
224
225
226
    case 0x3309103c:
227
        return ("HP iLO Standard Virtual USB controller");
228
225
    case 0x30381106:
229
    case 0x30381106:
226
        return ("VIA 83C572 USB controller");
230
        return ("VIA 83C572 USB controller");
227
231
Lines 309-314 Link Here
309
    case PCI_UHCI_VENDORID_INTEL:
313
    case PCI_UHCI_VENDORID_INTEL:
310
        sprintf(sc->sc_vendor, "Intel");
314
        sprintf(sc->sc_vendor, "Intel");
311
        break;
315
        break;
316
    case PCI_UHCI_VENDORID_HP:
317
        sprintf(sc->sc_vendor, "HP");
318
        break;
312
    case PCI_UHCI_VENDORID_VIA:
319
    case PCI_UHCI_VENDORID_VIA:
313
        sprintf(sc->sc_vendor, "VIA");
320
        sprintf(sc->sc_vendor, "VIA");
314
        break;
321
        break;

Return to bug 202807