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
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=79317
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",