From: Johannes Berg Date: Wed, 14 Sep 2016 07:58:31 +0000 (+0200) Subject: mac80211: remove unused assignment X-Git-Tag: v4.9-rc1~127^2~162^2~7 X-Git-Url: https://git.kernel.dk/?a=commitdiff_plain;h=5140974dca69f0eace465bccd93891ca242a7e61;p=linux-block.git mac80211: remove unused assignment The next line overwrites this assignment, so remove it; there's no real value in using it for the next assignment either. Signed-off-by: Johannes Berg --- diff --git a/net/mac80211/util.c b/net/mac80211/util.c index e777c2a6568f..b6865d884487 100644 --- a/net/mac80211/util.c +++ b/net/mac80211/util.c @@ -2555,7 +2555,6 @@ int ieee80211_add_srates_ie(struct ieee80211_sub_if_data *sdata, if (need_basic && basic_rates & BIT(i)) basic = 0x80; - rate = sband->bitrates[i].bitrate; rate = DIV_ROUND_UP(sband->bitrates[i].bitrate, 5 * (1 << shift)); *pos++ = basic | (u8) rate;