From 3be95df6a0bf9e663baa1d3c8414fc2a6b9f0749 Mon Sep 17 00:00:00 2001 From: Hidetoshi Shimokawa Date: Wed, 4 Jun 2003 04:26:14 +0000 Subject: [PATCH] Add id for TI's 1394b link chip. --- sys/dev/firewire/fwohci_pci.c | 4 ++++ sys/dev/firewire/fwohcireg.h | 1 + 2 files changed, 5 insertions(+) diff --git a/sys/dev/firewire/fwohci_pci.c b/sys/dev/firewire/fwohci_pci.c index 32e084d18ef..9898aba88b2 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 96b19b1ccc8..7ce20877952 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) -- 2.45.2