Set vendor string correctly for the Apple KeyLargo.
Forgotten by: benno Spotted by: n_hibma
This commit is contained in:
parent
1353fdc585
commit
beefc79739
Notes:
svn2git
2020-12-20 02:59:44 +00:00
svn path=/head/; revision=79317
@ -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 New Issue
Block a user