diff --git a/sys/dev/ic/wi.c b/sys/dev/ic/wi.c index b328d855d5ec..34a459743cce 100644 --- a/sys/dev/ic/wi.c +++ b/sys/dev/ic/wi.c @@ -1,4 +1,4 @@ -/* $NetBSD: wi.c,v 1.33 2002/01/20 05:39:52 ichiro Exp $ */ +/* $NetBSD: wi.c,v 1.34 2002/01/20 07:26:14 ichiro Exp $ */ /* * Copyright (c) 1997, 1998, 1999 @@ -70,7 +70,7 @@ */ #include -__KERNEL_RCSID(0, "$NetBSD: wi.c,v 1.33 2002/01/20 05:39:52 ichiro Exp $"); +__KERNEL_RCSID(0, "$NetBSD: wi.c,v 1.34 2002/01/20 07:26:14 ichiro Exp $"); #define WI_HERMES_AUTOINC_WAR /* Work around data write autoinc bug. */ #define WI_HERMES_STATS_WAR /* Work around stats counter bug. */ @@ -1912,7 +1912,7 @@ wi_sync_media(sc, ptype, txrate) case 3: subtype = IFM_AUTO; break; - case 4: + case 5: subtype = IFM_IEEE80211_DS5; break; case 11: @@ -1967,7 +1967,7 @@ wi_media_change(ifp) sc->wi_tx_rate = 3; break; case IFM_IEEE80211_DS5: - sc->wi_tx_rate = 4; + sc->wi_tx_rate = 5; break; case IFM_IEEE80211_DS11: sc->wi_tx_rate = 11;