diff options
author | benno <benno@FreeBSD.org> | 2001-07-05 12:04:19 +0000 |
---|---|---|
committer | benno <benno@FreeBSD.org> | 2001-07-05 12:04:19 +0000 |
commit | d393753807b9d244a415e6164b98730452e7b4c6 (patch) | |
tree | 08c844aee4985ecf8a7985b76d92ddb3d0d54444 /sys/pci | |
parent | 35743bd62a0f6bfa62a960eaa6d62d6502a32471 (diff) | |
download | FreeBSD-src-d393753807b9d244a415e6164b98730452e7b4c6.zip FreeBSD-src-d393753807b9d244a415e6164b98730452e7b4c6.tar.gz |
Set vendor string correctly for the Apple KeyLargo.
Forgotten by: benno
Spotted by: n_hibma
Diffstat (limited to 'sys/pci')
-rw-r--r-- | sys/pci/ohci_pci.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/sys/pci/ohci_pci.c b/sys/pci/ohci_pci.c index f201aa7..711a91c 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", |