aboutsummaryrefslogtreecommitdiff
path: root/sys/dev/firewire
diff options
context:
space:
mode:
authorHidetoshi Shimokawa <simokawa@FreeBSD.org>2003-06-04 04:26:14 +0000
committerHidetoshi Shimokawa <simokawa@FreeBSD.org>2003-06-04 04:26:14 +0000
commit3be95df6a0bf9e663baa1d3c8414fc2a6b9f0749 (patch)
tree15500f6f6b29dea3a8902a7de09cf0d409962f76 /sys/dev/firewire
parent5d5029366c423526a1af89449bb81db9917ff199 (diff)
Notes
Diffstat (limited to 'sys/dev/firewire')
-rw-r--r--sys/dev/firewire/fwohci_pci.c4
-rw-r--r--sys/dev/firewire/fwohcireg.h1
2 files changed, 5 insertions, 0 deletions
diff --git a/sys/dev/firewire/fwohci_pci.c b/sys/dev/firewire/fwohci_pci.c
index 32e084d18eff..9898aba88b20 100644
--- a/sys/dev/firewire/fwohci_pci.c
+++ b/sys/dev/firewire/fwohci_pci.c
@@ -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;
diff --git a/sys/dev/firewire/fwohcireg.h b/sys/dev/firewire/fwohcireg.h
index 96b19b1ccc8b..7ce208779528 100644
--- a/sys/dev/firewire/fwohcireg.h
+++ b/sys/dev/firewire/fwohcireg.h
@@ -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)