Commit 792d89ee authored by Nishka Dasgupta's avatar Nishka Dasgupta Committed by Greg Kroah-Hartman

staging: rtl8188eu: Replace function rtl88e_phy_rf6052_config()

Remove function rtl88e_phy_rf6052_config as all it does is call
rf6052_conf_para.
Rename rf6052_conf_para to rtl88e_phy_rf6052_config to maintain
compatibility with call site.
Issue found with Coccinelle.
Signed-off-by: default avatarNishka Dasgupta <nishkadg.linux@gmail.com>
Link: https://lore.kernel.org/r/20190712071746.2474-7-nishkadg.linux@gmail.comSigned-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 5cace672
...@@ -218,7 +218,7 @@ static bool rtl88e_phy_config_rf_with_headerfile(struct adapter *adapt) ...@@ -218,7 +218,7 @@ static bool rtl88e_phy_config_rf_with_headerfile(struct adapter *adapt)
return true; return true;
} }
static bool rf6052_conf_para(struct adapter *adapt) static bool rtl88e_phy_rf6052_config(struct adapter *adapt)
{ {
struct hal_data_8188e *hal_data = adapt->HalData; struct hal_data_8188e *hal_data = adapt->HalData;
u32 u4val = 0; u32 u4val = 0;
...@@ -247,11 +247,6 @@ static bool rf6052_conf_para(struct adapter *adapt) ...@@ -247,11 +247,6 @@ static bool rf6052_conf_para(struct adapter *adapt)
return rtstatus; return rtstatus;
} }
static bool rtl88e_phy_rf6052_config(struct adapter *adapt)
{
return rf6052_conf_para(adapt);
}
bool rtl88eu_phy_rf_config(struct adapter *adapt) bool rtl88eu_phy_rf_config(struct adapter *adapt)
{ {
return rtl88e_phy_rf6052_config(adapt); return rtl88e_phy_rf6052_config(adapt);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment