summaryrefslogtreecommitdiff
path: root/sys
diff options
context:
space:
mode:
authorMark Kettenis <kettenis@cvs.openbsd.org>2007-04-03 23:17:43 +0000
committerMark Kettenis <kettenis@cvs.openbsd.org>2007-04-03 23:17:43 +0000
commiteb352084ac616e16f224849fb319ba7cdb0aa710 (patch)
treeed129ab52fdd649ec54d29d3868d830d2af29b3f /sys
parent540a974d9e8a7ac78c8dd7f2f2ff26eb465c0618 (diff)
Match su16552.
Diffstat (limited to 'sys')
-rw-r--r--sys/arch/sparc64/dev/com_ebus.c7
1 files changed, 4 insertions, 3 deletions
diff --git a/sys/arch/sparc64/dev/com_ebus.c b/sys/arch/sparc64/dev/com_ebus.c
index 0e4900a13f8..836c7efa8b1 100644
--- a/sys/arch/sparc64/dev/com_ebus.c
+++ b/sys/arch/sparc64/dev/com_ebus.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: com_ebus.c,v 1.11 2005/06/06 01:08:47 miod Exp $ */
+/* $OpenBSD: com_ebus.c,v 1.12 2007/04/03 23:17:42 kettenis Exp $ */
/* $NetBSD: com_ebus.c,v 1.6 2001/07/24 19:27:10 eeh Exp $ */
/*
@@ -85,8 +85,9 @@ com_ebus_match(parent, match, aux)
if ((i = OF_getproplen(ea->ea_node, "compatible")) &&
OF_getprop(ea->ea_node, "compatible", compat,
sizeof(compat)) == i) {
- if (strcmp(compat, "su16550") == 0 ||
- strcmp(compat, "su") == 0) {
+ if (strcmp(compat, "su16552") == 0 ||
+ strcmp(compat, "su16550") == 0 ||
+ strcmp(compat, "su") == 0) {
return (1);
}
}