diff options
| author | Hidetoshi Shimokawa <simokawa@FreeBSD.org> | 2003-02-18 09:46:52 +0000 |
|---|---|---|
| committer | Hidetoshi Shimokawa <simokawa@FreeBSD.org> | 2003-02-18 09:46:52 +0000 |
| commit | 12f2a2958bf0194ab70b0e89c14b063d0f7dd2c8 (patch) | |
| tree | 1dab9f87f844ee8b24b933633b6200172897657c /sys/dev | |
| parent | 1adf684228679c02b142ebec80590039f2584063 (diff) | |
Notes
Diffstat (limited to 'sys/dev')
| -rw-r--r-- | sys/dev/firewire/fwohci_pci.c | 4 | ||||
| -rw-r--r-- | sys/dev/firewire/fwohcireg.h | 1 |
2 files changed, 5 insertions, 0 deletions
diff --git a/sys/dev/firewire/fwohci_pci.c b/sys/dev/firewire/fwohci_pci.c index a837f60aefa08..e870f85b2ef35 100644 --- a/sys/dev/firewire/fwohci_pci.c +++ b/sys/dev/firewire/fwohci_pci.c @@ -70,6 +70,10 @@ fwohci_pci_probe( device_t dev ) device_set_desc(dev, "NEC uPD72861"); return 0; } + if (id == (FW_VENDORID_NEC | FW_DEVICE_UPD871)) { + device_set_desc(dev, "NEC uPD72871/2"); + return 0; + } if (id == (FW_VENDORID_TI | FW_DEVICE_TITSB22)) { device_set_desc(dev, "Texas Instruments TSB12LV22"); return 0; diff --git a/sys/dev/firewire/fwohcireg.h b/sys/dev/firewire/fwohcireg.h index 2ad0a6da0eada..afbee031f8326 100644 --- a/sys/dev/firewire/fwohcireg.h +++ b/sys/dev/firewire/fwohcireg.h @@ -44,6 +44,7 @@ #define FW_VENDORID_LUCENT (0x11c1 << 16) #define FW_DEVICE_UPD861 0x0063 +#define FW_DEVICE_UPD871 0x00ce #define FW_DEVICE_TITSB22 0x8009 #define FW_DEVICE_TITSB23 0x8019 #define FW_DEVICE_TITSB26 0x8020 |
