Add id for TI's 1394b link chip.

This commit is contained in:
Hidetoshi Shimokawa 2003-06-04 04:26:14 +00:00
parent 5d5029366c
commit 3be95df6a0
2 changed files with 5 additions and 0 deletions

View File

@ -110,6 +110,10 @@ fwohci_pci_probe( device_t dev )
device_set_desc(dev, "Texas Instruments TSB43AB23");
return 0;
}
if (id == (FW_VENDORID_TI | FW_DEVICE_TITSB82AA2)) {
device_set_desc(dev, "Texas Instruments TSB82AA2");
return 0;
}
if (id == (FW_VENDORID_TI | FW_DEVICE_TIPCI4450)) {
device_set_desc(dev, "Texas Instruments PCI4450");
return 0;

View File

@ -54,6 +54,7 @@
#define FW_DEVICE_TITSB43 (0x8021 << 16)
#define FW_DEVICE_TITSB43A (0x8023 << 16)
#define FW_DEVICE_TITSB43AB23 (0x8024 << 16)
#define FW_DEVICE_TITSB82AA2 (0x8025 << 16)
#define FW_DEVICE_TIPCI4410A (0x8017 << 16)
#define FW_DEVICE_TIPCI4450 (0x8011 << 16)
#define FW_DEVICE_TIPCI4451 (0x8027 << 16)