From 9e9d5ee3eb5509b1f9d0d66ca47a580b0817725e Mon Sep 17 00:00:00 2001 From: kettenis Date: Mon, 7 Jul 2008 23:22:27 +0000 Subject: [PATCH] Match on XMITS (which is a PCI-X Schizo variant found on Sun Fire E2900/E4900/E6900/E20K/E25K systems). There's a fairly good chance it'll just work. --- sys/arch/sparc64/dev/schizo.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/sys/arch/sparc64/dev/schizo.c b/sys/arch/sparc64/dev/schizo.c index 10b2e3287e5..77c2d170058 100644 --- a/sys/arch/sparc64/dev/schizo.c +++ b/sys/arch/sparc64/dev/schizo.c @@ -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); -- 2.20.1