From d7d8341eff47f9973351ec8f344821f7aad25425 Mon Sep 17 00:00:00 2001 From: simokawa Date: Fri, 30 Jan 2004 14:30:19 +0000 Subject: [PATCH] Add NEC uPD72873. Submitted by: Christian Laursen --- 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 f790f40f8c6..1ebb8f04002 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 e4543b9f033..c7841d6a17f 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) -- 2.45.2