aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorWarner Losh <imp@FreeBSD.org>2018-04-01 00:25:47 +0000
committerWarner Losh <imp@FreeBSD.org>2018-04-01 00:25:47 +0000
commit33d62e33b3fe2adab49a5b99542690a4af8fe8aa (patch)
tree97ec2284cec337eb8095a28eae6b3285ab6e87eb
parent8d21763e0821ec56f62b3fc83137220eeca9fbc2 (diff)
Notes
-rw-r--r--sys/dev/firewire/fwohci_pci.c4
-rw-r--r--sys/dev/firewire/fwohcireg.h2
2 files changed, 3 insertions, 3 deletions
diff --git a/sys/dev/firewire/fwohci_pci.c b/sys/dev/firewire/fwohci_pci.c
index 5fa94ebe65d7..aa024df42ac6 100644
--- a/sys/dev/firewire/fwohci_pci.c
+++ b/sys/dev/firewire/fwohci_pci.c
@@ -171,8 +171,8 @@ fwohci_pci_probe(device_t dev)
device_set_desc(dev, "Apple Pangea");
return BUS_PROBE_DEFAULT;
}
- if (id == (FW_VENDORID_APPLE | FW_DEVICE_UNINORTH)) {
- device_set_desc(dev, "Apple UniNorth");
+ if (id == (FW_VENDORID_APPLE | FW_DEVICE_UNINORTH2)) {
+ device_set_desc(dev, "Apple UniNorth 2");
return BUS_PROBE_DEFAULT;
}
if (id == (FW_VENDORID_LUCENT | FW_DEVICE_FW322)) {
diff --git a/sys/dev/firewire/fwohcireg.h b/sys/dev/firewire/fwohcireg.h
index 1b8ffe71c0c1..775ad62fda1d 100644
--- a/sys/dev/firewire/fwohcireg.h
+++ b/sys/dev/firewire/fwohcireg.h
@@ -74,7 +74,7 @@
#define FW_DEVICE_R5C551 (0x0551 << 16)
#define FW_DEVICE_R5C552 (0x0552 << 16)
#define FW_DEVICE_PANGEA (0x0030 << 16)
-#define FW_DEVICE_UNINORTH (0x0031 << 16)
+#define FW_DEVICE_UNINORTH2 (0x0031 << 16)
#define FW_DEVICE_AIC5800 (0x5800 << 16)
#define FW_DEVICE_FW322 (0x5811 << 16)
#define FW_DEVICE_7007 (0x7007 << 16)