summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTheo de Raadt <deraadt@cvs.openbsd.org>2006-06-23 16:09:46 +0000
committerTheo de Raadt <deraadt@cvs.openbsd.org>2006-06-23 16:09:46 +0000
commit97df39b4609fb5347190e9cb95664cf5693c5031 (patch)
tree085ccebc9b48a9261d2214e835db4dd33f5e809b
parent93464a5bb604a1cdd00a71845d69e3c6ab772286 (diff)
match tomatillo varient (not yet fully working)
-rw-r--r--sys/arch/sparc64/dev/schizo.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/sys/arch/sparc64/dev/schizo.c b/sys/arch/sparc64/dev/schizo.c
index 775ca363a02..b5960956182 100644
--- a/sys/arch/sparc64/dev/schizo.c
+++ b/sys/arch/sparc64/dev/schizo.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: schizo.c,v 1.26 2006/06/02 04:48:34 jason Exp $ */
+/* $OpenBSD: schizo.c,v 1.27 2006/06/23 16:09:45 deraadt Exp $ */
/*
* Copyright (c) 2002 Jason L. Wright (jason@thought.net)
@@ -112,6 +112,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,a801") == 0) /* Tomatillo */
+ return (1);
return (0);
}