summaryrefslogtreecommitdiff
path: root/sys/arch
diff options
context:
space:
mode:
authorMark Kettenis <kettenis@cvs.openbsd.org>2008-05-24 00:11:32 +0000
committerMark Kettenis <kettenis@cvs.openbsd.org>2008-05-24 00:11:32 +0000
commit46997233fa8dff706d228597091d4af7e813c9ff (patch)
tree6ff044389af05c14c901571a3c496ca412cefbf1 /sys/arch
parent6c61d70b49aaaacb3467cf046948ea20120ae1dd (diff)
Match serial devices on PRIMEPOWER 650.
Diffstat (limited to 'sys/arch')
-rw-r--r--sys/arch/sparc64/dev/sab.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/sys/arch/sparc64/dev/sab.c b/sys/arch/sparc64/dev/sab.c
index 401cfc260a9..8d6ecef0628 100644
--- a/sys/arch/sparc64/dev/sab.c
+++ b/sys/arch/sparc64/dev/sab.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: sab.c,v 1.24 2008/03/01 16:03:04 kettenis Exp $ */
+/* $OpenBSD: sab.c,v 1.25 2008/05/24 00:11:31 kettenis Exp $ */
/*
* Copyright (c) 2001 Jason L. Wright (jason@thought.net)
@@ -213,7 +213,8 @@ sab_match(parent, match, aux)
struct ebus_attach_args *ea = aux;
char *compat;
- if (strcmp(ea->ea_name, "se") == 0)
+ if (strcmp(ea->ea_name, "se") == 0 ||
+ strcmp(ea->ea_name, "FJSV,se") == 0)
return (1);
compat = getpropstring(ea->ea_node, "compatible");
if (compat != NULL && !strcmp(compat, "sab82532"))