diff options
author | Brad Smith <brad@cvs.openbsd.org> | 2006-10-20 03:52:23 +0000 |
---|---|---|
committer | Brad Smith <brad@cvs.openbsd.org> | 2006-10-20 03:52:23 +0000 |
commit | 3d95f8fbb9dde41bab52a073a93f5715288167c5 (patch) | |
tree | a6714ffbe5bb793bacdc4b763a2a02a067dad7ff | |
parent | 48408b68df855d3948e176fae5b0c73fdbf0e3e0 (diff) |
remove the IFM_100_T4 switch case for the manual media code, brgphy(4)
does not actually support 100baseT4.
-rw-r--r-- | sys/dev/mii/brgphy.c | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/sys/dev/mii/brgphy.c b/sys/dev/mii/brgphy.c index 22514dbb7b6..107e6db7e23 100644 --- a/sys/dev/mii/brgphy.c +++ b/sys/dev/mii/brgphy.c @@ -1,4 +1,4 @@ -/* $OpenBSD: brgphy.c,v 1.64 2006/10/20 03:30:24 brad Exp $ */ +/* $OpenBSD: brgphy.c,v 1.65 2006/10/20 03:52:22 brad Exp $ */ /* * Copyright (c) 2000 @@ -228,9 +228,6 @@ brgphy_service(struct mii_softc *sc, struct mii_data *mii, int cmd) case IFM_1000_T: speed = BRGPHY_S1000; goto setit; - case IFM_100_T4: - speed = BRGPHY_S100; - goto setit; case IFM_100_TX: speed = BRGPHY_S100; goto setit; |