diff options
Diffstat (limited to 'net/wireless/wext-compat.c')
-rw-r--r-- | net/wireless/wext-compat.c | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/net/wireless/wext-compat.c b/net/wireless/wext-compat.c index 584eb4826e02..2fa8de1140e9 100644 --- a/net/wireless/wext-compat.c +++ b/net/wireless/wext-compat.c | |||
@@ -1256,10 +1256,7 @@ int cfg80211_wext_giwrate(struct net_device *dev, | |||
1256 | if (!(sinfo.filled & STATION_INFO_TX_BITRATE)) | 1256 | if (!(sinfo.filled & STATION_INFO_TX_BITRATE)) |
1257 | return -EOPNOTSUPP; | 1257 | return -EOPNOTSUPP; |
1258 | 1258 | ||
1259 | rate->value = 0; | 1259 | rate->value = 100000 * cfg80211_calculate_bitrate(&sinfo.txrate); |
1260 | |||
1261 | if (!(sinfo.txrate.flags & RATE_INFO_FLAGS_MCS)) | ||
1262 | rate->value = 100000 * sinfo.txrate.legacy; | ||
1263 | 1260 | ||
1264 | return 0; | 1261 | return 0; |
1265 | } | 1262 | } |