summaryrefslogtreecommitdiff
path: root/sys
diff options
context:
space:
mode:
authorJason Wright <jason@cvs.openbsd.org>1999-09-26 17:50:42 +0000
committerJason Wright <jason@cvs.openbsd.org>1999-09-26 17:50:42 +0000
commit965011265d95d7e4958936d038331bb5ca9d7e57 (patch)
tree70792c665b8cfee6493f5db31920a40d4e2eefe4 /sys
parent96da1a8b010652588a63d19beea9c065936f8967 (diff)
match if parent is 'xl'
Diffstat (limited to 'sys')
-rw-r--r--sys/dev/mii/exphy.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/dev/mii/exphy.c b/sys/dev/mii/exphy.c
index 25498719b7d..f29a3c1fdb2 100644
--- a/sys/dev/mii/exphy.c
+++ b/sys/dev/mii/exphy.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: exphy.c,v 1.4 1999/07/23 12:39:11 deraadt Exp $ */
+/* $OpenBSD: exphy.c,v 1.5 1999/09/26 17:50:41 jason Exp $ */
/* $NetBSD: exphy.c,v 1.15.6.1 1999/04/23 15:39:33 perry Exp $ */
/*-
@@ -125,9 +125,9 @@ exphymatch(parent, match, aux)
return (0);
/*
- * Make sure the parent is an `ex'.
+ * Make sure the parent is an `xl'.
*/
- if (strcmp(parent->dv_cfdata->cf_driver->cd_name, "ex") != 0)
+ if (strcmp(parent->dv_cfdata->cf_driver->cd_name, "xl") != 0)
return (0);
return (10);