diff options
author | Warner Losh <imp@FreeBSD.org> | 2001-08-30 22:48:47 +0000 |
---|---|---|
committer | Warner Losh <imp@FreeBSD.org> | 2001-08-30 22:48:47 +0000 |
commit | f99a696093245ea698d8a98b3cb8c5b67fbad1d4 (patch) | |
tree | b39315c6943ffe245b9fe55c6987755427e6f254 | |
parent | d33a962d0758affe619d4bec4f26a02b19510e4f (diff) | |
download | src-f99a696093245ea698d8a98b3cb8c5b67fbad1d4.tar.gz src-f99a696093245ea698d8a98b3cb8c5b67fbad1d4.zip |
Add names for the TI PCI-1210, TI PCI-4410 and TI PCI-4450 parts. I had
this for a while, and don't know how it didn't make it into the tree.
Notes
Notes:
svn path=/head/; revision=82605
-rw-r--r-- | sys/pccard/pcic_pci.c | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/sys/pccard/pcic_pci.c b/sys/pccard/pcic_pci.c index c0f7e01cd081..d1c8aa49268a 100644 --- a/sys/pccard/pcic_pci.c +++ b/sys/pccard/pcic_pci.c @@ -154,6 +154,9 @@ struct pcic_pci_table { PCI_DEVICE_ID_PCIC_TI1131, "TI PCI-1131 PCI-CardBus Bridge", PCIC_I82365SL_DF, PCIC_DF_POWER, pcic_pci_ti_init }, + { PCI_DEVICE_ID_PCIC_TI1210, + "TI PCI-1210 PCI-CardBus Bridge", + PCIC_I82365SL_DF, PCIC_DF_POWER, pcic_pci_ti_init }, { PCI_DEVICE_ID_PCIC_TI1211, "TI PCI-1211 PCI-CardBus Bridge", PCIC_I82365SL_DF, PCIC_DF_POWER, pcic_pci_ti_init }, @@ -187,6 +190,12 @@ struct pcic_pci_table { PCI_DEVICE_ID_PCIC_TI1451, "TI PCI-1451 PCI-CardBus Bridge", PCIC_I82365SL_DF, PCIC_DF_POWER, pcic_pci_ti_init }, + { PCI_DEVICE_ID_PCIC_TI4410, + "TI PCI-4410 PCI-CardBus Bridge", + PCIC_I82365SL_DF, PCIC_DF_POWER, pcic_pci_ti_init }, + { PCI_DEVICE_ID_PCIC_TI4450, + "TI PCI-4450 PCI-CardBus Bridge", + PCIC_I82365SL_DF, PCIC_DF_POWER, pcic_pci_ti_init }, { PCI_DEVICE_ID_PCIC_TI4451, "TI PCI-4451 PCI-CardBus Bridge", PCIC_I82365SL_DF, PCIC_DF_POWER, pcic_pci_ti_init }, |