summaryrefslogtreecommitdiff
path: root/sys/arch/sparc64/dev
diff options
context:
space:
mode:
authorJason Wright <jason@cvs.openbsd.org>2002-07-18 02:20:18 +0000
committerJason Wright <jason@cvs.openbsd.org>2002-07-18 02:20:18 +0000
commitab4a94bd4e3b91059e357ac12e6e179b0de94cf2 (patch)
treeb4eb39e5b6ee906032d52f1c399bd39b3895cfff /sys/arch/sparc64/dev
parente3af82154285e1dab113acac4d00f3a8cb0c72ed (diff)
another name, 'parallel'
Diffstat (limited to 'sys/arch/sparc64/dev')
-rw-r--r--sys/arch/sparc64/dev/lpt_ebus.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/arch/sparc64/dev/lpt_ebus.c b/sys/arch/sparc64/dev/lpt_ebus.c
index dff766c61ca..d51c64898d8 100644
--- a/sys/arch/sparc64/dev/lpt_ebus.c
+++ b/sys/arch/sparc64/dev/lpt_ebus.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: lpt_ebus.c,v 1.5 2002/05/27 20:07:06 deraadt Exp $ */
+/* $OpenBSD: lpt_ebus.c,v 1.6 2002/07/18 02:20:17 jason Exp $ */
/* $NetBSD: lpt_ebus.c,v 1.8 2002/03/01 11:51:00 martin Exp $ */
/*
@@ -66,9 +66,9 @@ lpt_ebus_match(parent, match, aux)
{
struct ebus_attach_args *ea = aux;
- if (strcmp(ea->ea_name, "ecpp") == 0)
+ if (!strcmp(ea->ea_name, "ecpp") ||
+ !strcmp(ea->ea_name, "parallel"))
return (1);
-
return (0);
}