]> asedeno.scripts.mit.edu Git - linux.git/commit
rtw88: rearrange if..else statements for rx rate indexes
authorYan-Hsuan Chuang <yhchuang@realtek.com>
Fri, 25 Oct 2019 09:33:43 +0000 (17:33 +0800)
committerKalle Valo <kvalo@codeaurora.org>
Thu, 31 Oct 2019 08:03:49 +0000 (10:03 +0200)
commitff0dfe5b0377c075986e8ac1c1516f5fbdb15b15
tree1ccf119cbcd0b1240e5de7785a9daaa158dd4105
parent0b8db87da54178717d302ca5dc09285ad4922abc
rtw88: rearrange if..else statements for rx rate indexes

Driver just memset() rx_status to 0 before assigning rate indexes.
And driver could never hit the 'else' because the driver checks
if 'pkt_stat->rate >= DESC_RATEMCS0', so the 'else' statement can
be removed.

Also rearrange the if..else statements because DESC_RATEMCS0 is
actually larger than DESC_RATE1M ~ DESC_RATE54M, move the check
of 'pkt_stat->rate >= DESC_RATEMCS0' to the last to keep an
increasing order.

Signed-off-by: Yan-Hsuan Chuang <yhchuang@realtek.com>
Signed-off-by: Kalle Valo <kvalo@codeaurora.org>
drivers/net/wireless/realtek/rtw88/rx.c