From beefc79739496c05ca59feb34bedcb00008cf2c2 Mon Sep 17 00:00:00 2001 From: Benno Rice Date: Thu, 5 Jul 2001 12:04:19 +0000 Subject: [PATCH] Set vendor string correctly for the Apple KeyLargo. Forgotten by: benno Spotted by: n_hibma --- sys/dev/usb/ohci_pci.c | 4 ++++ sys/pci/ohci_pci.c | 4 ++++ 2 files changed, 8 insertions(+) diff --git a/sys/dev/usb/ohci_pci.c b/sys/dev/usb/ohci_pci.c index f201aa7134f..711a91cb1ec 100644 --- a/sys/dev/usb/ohci_pci.c +++ b/sys/dev/usb/ohci_pci.c @@ -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", diff --git a/sys/pci/ohci_pci.c b/sys/pci/ohci_pci.c index f201aa7134f..711a91cb1ec 100644 --- a/sys/pci/ohci_pci.c +++ b/sys/pci/ohci_pci.c @@ -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",