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: Nishka Dasgupta <nishkadg.linux@gmail.com> Link: https://lore.kernel.org/r/20190712071746.2474-7-nishkadg.linux@gmail.com Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
5cace672b9
commit
792d89ee4b
|
@ -218,7 +218,7 @@ static bool rtl88e_phy_config_rf_with_headerfile(struct adapter *adapt)
|
|||
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;
|
||||
u32 u4val = 0;
|
||||
|
@ -247,11 +247,6 @@ static bool rf6052_conf_para(struct adapter *adapt)
|
|||
return rtstatus;
|
||||
}
|
||||
|
||||
static bool rtl88e_phy_rf6052_config(struct adapter *adapt)
|
||||
{
|
||||
return rf6052_conf_para(adapt);
|
||||
}
|
||||
|
||||
bool rtl88eu_phy_rf_config(struct adapter *adapt)
|
||||
{
|
||||
return rtl88e_phy_rf6052_config(adapt);
|
||||
|
|
Loading…
Reference in New Issue