diff options
author | 2005-02-05 04:56:27 +0000 | |
---|---|---|
committer | 2005-02-05 04:56:27 +0000 | |
commit | 59b0bdc67a746f71a08708e4cae2d6f0bff8d3f1 (patch) | |
tree | 5e7944809d6532063eb93faf6633df4df7535148 | |
parent | update (diff) | |
download | wireguard-openbsd-59b0bdc67a746f71a08708e4cae2d6f0bff8d3f1.tar.xz wireguard-openbsd-59b0bdc67a746f71a08708e4cae2d6f0bff8d3f1.zip |
no RTL8201L PHY's here..
-rw-r--r-- | sys/dev/mii/urlphy.c | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/sys/dev/mii/urlphy.c b/sys/dev/mii/urlphy.c index fe755f2e469..2aec216ec46 100644 --- a/sys/dev/mii/urlphy.c +++ b/sys/dev/mii/urlphy.c @@ -1,4 +1,4 @@ -/* $OpenBSD: urlphy.c,v 1.8 2005/01/28 18:27:55 brad Exp $ */ +/* $OpenBSD: urlphy.c,v 1.9 2005/02/05 04:56:27 brad Exp $ */ /* $NetBSD: urlphy.c,v 1.1 2002/03/28 21:07:53 ichiro Exp $ */ /* * Copyright (c) 2001, 2002 @@ -105,11 +105,7 @@ urlphy_attach(struct device *parent, struct device *self, void *aux) struct mii_attach_args *ma = aux; struct mii_data *mii = ma->mii_data; - if (MII_MODEL(ma->mii_id2) == MII_MODEL_REALTEK_RTL8201L) { - printf(": %s, rev. %d\n", MII_STR_REALTEK_RTL8201L, - MII_REV(ma->mii_id2)); - } else - printf(": RTL internal phy\n"); + printf(": RTL internal phy\n"); DPRINTF(("%s: %s: enter\n", sc->mii_dev.dv_xname, __func__)); |