diff options
| author | Hidetoshi Shimokawa <simokawa@FreeBSD.org> | 2004-01-30 14:30:19 +0000 |
|---|---|---|
| committer | Hidetoshi Shimokawa <simokawa@FreeBSD.org> | 2004-01-30 14:30:19 +0000 |
| commit | dbc80c7bf21a8f01c208b137848ede3e4bc3ff2a (patch) | |
| tree | aeba8283c0e3d3e271cd0b1ebc9b7b8adcee7112 | |
| parent | b180671ce430524681786b6bd4485f1c5e7a9ef7 (diff) | |
Notes
| -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 f790f40f8c6d..1ebb8f040025 100644 --- a/sys/dev/firewire/fwohci_pci.c +++ b/sys/dev/firewire/fwohci_pci.c @@ -95,6 +95,10 @@ fwohci_pci_probe( device_t dev ) device_set_desc(dev, "NEC uPD72870"); return 0; } + if (id == (FW_VENDORID_NEC | FW_DEVICE_UPD72873)) { + device_set_desc(dev, "NEC uPD72873"); + return 0; + } if (id == (FW_VENDORID_NEC | FW_DEVICE_UPD72874)) { device_set_desc(dev, "NEC uPD72874"); return 0; diff --git a/sys/dev/firewire/fwohcireg.h b/sys/dev/firewire/fwohcireg.h index e4543b9f0336..c7841d6a17f3 100644 --- a/sys/dev/firewire/fwohcireg.h +++ b/sys/dev/firewire/fwohcireg.h @@ -47,6 +47,7 @@ #define FW_DEVICE_UPD861 (0x0063 << 16) #define FW_DEVICE_UPD871 (0x00ce << 16) #define FW_DEVICE_UPD72870 (0x00cd << 16) +#define FW_DEVICE_UPD72873 (0x00e7 << 16) #define FW_DEVICE_UPD72874 (0x00f2 << 16) #define FW_DEVICE_TITSB22 (0x8009 << 16) #define FW_DEVICE_TITSB23 (0x8019 << 16) |
