diff options
author | imp <imp@FreeBSD.org> | 2001-01-02 21:42:48 +0000 |
---|---|---|
committer | imp <imp@FreeBSD.org> | 2001-01-02 21:42:48 +0000 |
commit | 93d6e1eee351f7d8aa7c42169cfbf1dc4ba978ac (patch) | |
tree | cab7f5e6761a4fb041b0cb294d01409712cf6dc4 /sys/pci/pcic_p.c | |
parent | 1e95becf76111543a7eea6d10ec07ff49dd604fe (diff) | |
download | FreeBSD-src-93d6e1eee351f7d8aa7c42169cfbf1dc4ba978ac.zip FreeBSD-src-93d6e1eee351f7d8aa7c42169cfbf1dc4ba978ac.tar.gz |
Add device id for the OZ Micro 6832. I didn't try to init it like the
Cirrus Logic parts that end in 6832, but maybe some machines will need
that in the future.
Diffstat (limited to 'sys/pci/pcic_p.c')
-rw-r--r-- | sys/pci/pcic_p.c | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/sys/pci/pcic_p.c b/sys/pci/pcic_p.c index 23f80ce..ae049b4 100644 --- a/sys/pci/pcic_p.c +++ b/sys/pci/pcic_p.c @@ -289,6 +289,9 @@ pcic_pci_probe(device_t dev) case PCI_DEVICE_ID_RICOH_RL5C478: desc = "Ricoh RL5C478 PCI-CardBus Bridge"; break; + case PCI_DEVICE_ID_PCIC_OZ6832: + desc = "O2micro 6832 PCI-Cardbus Bridge"; + break; /* 16bit PC-card bridges */ case PCI_DEVICE_ID_PCIC_CLPD6729: @@ -315,7 +318,8 @@ pcic_pci_probe(device_t dev) /* * General PCI based card dispatch routine. Right now - * it only understands the CL-PD6832. + * it only understands the CL-PD6832 and TI parts. It does + * try to do generic things with other parts. */ static int pcic_pci_attach(device_t dev) |