mirror of
https://github.com/opnsense/src.git
synced 2026-06-10 17:22:46 -04:00
Set vendor string correctly for the Apple KeyLargo.
Forgotten by: benno Spotted by: n_hibma
This commit is contained in:
parent
1353fdc585
commit
beefc79739
2 changed files with 8 additions and 0 deletions
|
|
@ -218,6 +218,10 @@ ohci_pci_attach(device_t self)
|
|||
device_set_desc(sc->sc_bus.bdev, ohci_device_sis5571);
|
||||
sprintf(sc->sc_vendor, "SiS");
|
||||
break;
|
||||
case PCI_OHCI_DEVICEID_KEYLARGO:
|
||||
device_set_desc(sc->sc_bus.bdev, ohci_device_keylargo);
|
||||
sprintf(sc->sc_vendor, "Apple");
|
||||
break;
|
||||
default:
|
||||
if (bootverbose)
|
||||
device_printf(self, "(New OHCI DeviceId=0x%08x)\n",
|
||||
|
|
|
|||
|
|
@ -218,6 +218,10 @@ ohci_pci_attach(device_t self)
|
|||
device_set_desc(sc->sc_bus.bdev, ohci_device_sis5571);
|
||||
sprintf(sc->sc_vendor, "SiS");
|
||||
break;
|
||||
case PCI_OHCI_DEVICEID_KEYLARGO:
|
||||
device_set_desc(sc->sc_bus.bdev, ohci_device_keylargo);
|
||||
sprintf(sc->sc_vendor, "Apple");
|
||||
break;
|
||||
default:
|
||||
if (bootverbose)
|
||||
device_printf(self, "(New OHCI DeviceId=0x%08x)\n",
|
||||
|
|
|
|||
Loading…
Reference in a new issue