artulab
projects
/
openbsd
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
f8d460b
)
Match on XMITS (which is a PCI-X Schizo variant found on Sun Fire
author
kettenis
<kettenis@openbsd.org>
Mon, 7 Jul 2008 23:22:27 +0000
(23:22 +0000)
committer
kettenis
<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
patch
|
blob
|
history
diff --git
a/sys/arch/sparc64/dev/schizo.c
b/sys/arch/sparc64/dev/schizo.c
index
10b2e32
..
77c2d17
100644
(file)
--- a/
sys/arch/sparc64/dev/schizo.c
+++ b/
sys/arch/sparc64/dev/schizo.c
@@
-1,4
+1,4
@@
-/* $OpenBSD: schizo.c,v 1.5
3 2008/01/19 11:13:43
kettenis Exp $ */
+/* $OpenBSD: schizo.c,v 1.5
4 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);