summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--sys/arch/sgi/xbow/xbridge.c6
1 files changed, 5 insertions, 1 deletions
diff --git a/sys/arch/sgi/xbow/xbridge.c b/sys/arch/sgi/xbow/xbridge.c
index 16314c2baaa..2714a02a754 100644
--- a/sys/arch/sgi/xbow/xbridge.c
+++ b/sys/arch/sgi/xbow/xbridge.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: xbridge.c,v 1.9 2009/04/18 19:26:18 miod Exp $ */
+/* $OpenBSD: xbridge.c,v 1.10 2009/04/18 19:26:33 miod Exp $ */
/*
* Copyright (c) 2008 Miodrag Vallat.
@@ -144,6 +144,10 @@ xbridge_match(struct device *parent, void *match, void *aux)
xaa->xaa_product == XBOW_PRODUCT_SGI4_BRIDGE)
return 1;
+ if (xaa->xaa_vendor == XBOW_VENDOR_SGI3 &&
+ xaa->xaa_product == XBOW_PRODUCT_SGI3_XBRIDGE)
+ return 1;
+
return 0;
}