Match on XMITS (which is a PCI-X Schizo variant found on Sun Fire
authorkettenis <kettenis@openbsd.org>
Mon, 7 Jul 2008 23:22:27 +0000 (23:22 +0000)
committerkettenis <kettenis@openbsd.org>
Mon, 7 Jul 2008 23:22:27 +0000 (23:22 +0000)
E2900/E4900/E6900/E20K/E25K systems).  There's a fairly good chance it'll
just work.

sys/arch/sparc64/dev/schizo.c

index 10b2e32..77c2d17 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: schizo.c,v 1.53 2008/01/19 11:13:43 kettenis Exp $    */
+/*     $OpenBSD: schizo.c,v 1.54 2008/07/07 23:22:27 kettenis Exp $    */
 
 /*
  * Copyright (c) 2002 Jason L. Wright (jason@thought.net)
@@ -115,6 +115,8 @@ schizo_match(struct device *parent, void *match, void *aux)
        str = getpropstring(ma->ma_node, "compatible");
        if (strcmp(str, "pci108e,8001") == 0)
                return (1);
+       if (strcmp(str, "pci108e,8002") == 0)           /* XMITS */
+               return (1);
        if (strcmp(str, "pci108e,a801") == 0)           /* Tomatillo */
                return (1);