diff options
author | Mark Kettenis <kettenis@cvs.openbsd.org> | 2008-07-07 23:22:28 +0000 |
---|---|---|
committer | Mark Kettenis <kettenis@cvs.openbsd.org> | 2008-07-07 23:22:28 +0000 |
commit | 7fb4948c3398489c43c9b3d328dbd2dc4ceca883 (patch) | |
tree | 3a4c5809ba2a0217c8e677e9b0dd63fddbdf642e /sys | |
parent | fb79ec1db2bce1ebd163e842234708ce7930d2d2 (diff) |
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.
Diffstat (limited to 'sys')
-rw-r--r-- | sys/arch/sparc64/dev/schizo.c | 4 |
1 files changed, 3 insertions, 1 deletions
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); |