diff options
author | Peter Valchev <pvalchev@cvs.openbsd.org> | 2004-10-29 01:52:36 +0000 |
---|---|---|
committer | Peter Valchev <pvalchev@cvs.openbsd.org> | 2004-10-29 01:52:36 +0000 |
commit | cfd0981f55cf85a421730907f1e9a34d45dd1c86 (patch) | |
tree | 93965768527ed48d4a61203654998fc86d679aba /sys | |
parent | b9229d3b4e4582944c8babf32bb7588dd94c97d1 (diff) |
remove double "PHY" printed in dmesg; ok deraadt
Diffstat (limited to 'sys')
-rw-r--r-- | sys/dev/mii/rgephy.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/dev/mii/rgephy.c b/sys/dev/mii/rgephy.c index ffe6c10ada1..2fe2d3e8492 100644 --- a/sys/dev/mii/rgephy.c +++ b/sys/dev/mii/rgephy.c @@ -1,4 +1,4 @@ -/* $OpenBSD: rgephy.c,v 1.5 2004/10/28 23:37:11 pvalchev Exp $ */ +/* $OpenBSD: rgephy.c,v 1.6 2004/10/29 01:52:35 pvalchev Exp $ */ /* * Copyright (c) 2003 * Bill Paul <wpaul@windriver.com>. All rights reserved. @@ -111,7 +111,7 @@ rgephyattach(struct device *parent, struct device *self, void *aux) struct mii_attach_args *ma = aux; struct mii_data *mii = ma->mii_data; - printf(": %s, rev. %d PHY\n", MII_STR_xxREALTEK_RTL8169S, + printf(": %s, rev. %d\n", MII_STR_xxREALTEK_RTL8169S, MII_REV(ma->mii_id2)); sc->mii_inst = mii->mii_instance; |