mirror of
https://github.com/edk2-porting/linux-next.git
synced 2024-12-19 02:34:01 +08:00
rtlwifi: rtl8192de: replace _rtl92d_evm_db_to_percentage with generic version
Function _rtl92d_evm_db_to_percentage is functionally identical to the generic version rtl_evm_db_to_percentage, so remove _rtl92d_evm_db_to_percentage and use the generic version instead. Signed-off-by: Michael Straube <straube.linux@gmail.com> Signed-off-by: Kalle Valo <kvalo@codeaurora.org>
This commit is contained in:
parent
622c19ed36
commit
3a1f85798e
@ -4,6 +4,7 @@
|
|||||||
#include "../wifi.h"
|
#include "../wifi.h"
|
||||||
#include "../pci.h"
|
#include "../pci.h"
|
||||||
#include "../base.h"
|
#include "../base.h"
|
||||||
|
#include "../stats.h"
|
||||||
#include "reg.h"
|
#include "reg.h"
|
||||||
#include "def.h"
|
#include "def.h"
|
||||||
#include "phy.h"
|
#include "phy.h"
|
||||||
@ -32,21 +33,6 @@ static u8 _rtl92d_query_rxpwrpercentage(s8 antpower)
|
|||||||
return 100 + antpower;
|
return 100 + antpower;
|
||||||
}
|
}
|
||||||
|
|
||||||
static u8 _rtl92d_evm_db_to_percentage(s8 value)
|
|
||||||
{
|
|
||||||
s8 ret_val = value;
|
|
||||||
|
|
||||||
if (ret_val >= 0)
|
|
||||||
ret_val = 0;
|
|
||||||
if (ret_val <= -33)
|
|
||||||
ret_val = -33;
|
|
||||||
ret_val = 0 - ret_val;
|
|
||||||
ret_val *= 3;
|
|
||||||
if (ret_val == 99)
|
|
||||||
ret_val = 100;
|
|
||||||
return ret_val;
|
|
||||||
}
|
|
||||||
|
|
||||||
static long _rtl92de_translate_todbm(struct ieee80211_hw *hw,
|
static long _rtl92de_translate_todbm(struct ieee80211_hw *hw,
|
||||||
u8 signal_strength_index)
|
u8 signal_strength_index)
|
||||||
{
|
{
|
||||||
@ -215,7 +201,7 @@ static void _rtl92de_query_rxphystatus(struct ieee80211_hw *hw,
|
|||||||
else
|
else
|
||||||
max_spatial_stream = 1;
|
max_spatial_stream = 1;
|
||||||
for (i = 0; i < max_spatial_stream; i++) {
|
for (i = 0; i < max_spatial_stream; i++) {
|
||||||
evm = _rtl92d_evm_db_to_percentage(p_drvinfo->rxevm[i]);
|
evm = rtl_evm_db_to_percentage(p_drvinfo->rxevm[i]);
|
||||||
if (packet_match_bssid) {
|
if (packet_match_bssid) {
|
||||||
if (i == 0)
|
if (i == 0)
|
||||||
pstats->signalquality =
|
pstats->signalquality =
|
||||||
|
Loading…
Reference in New Issue
Block a user