Set vendor string correctly for the Apple KeyLargo.

Forgotten by:	benno
Spotted by:	n_hibma
This commit is contained in:
Benno Rice 2001-07-05 12:04:19 +00:00
parent 1353fdc585
commit beefc79739
2 changed files with 8 additions and 0 deletions

View file

@ -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",

View file

@ -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",