staging: rtl8192e: Rename firmware_check_ready
Use naming schema found in other rtlwifi devices. Rename firmware_check_ready to _rtl92e_fw_check_ready. Signed-off-by: Mateusz Kulikowski <mateusz.kulikowski@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
57aac1ce29
commit
3270b5074f
|
@ -177,8 +177,8 @@ CPUCheckFirmwareReady_Fail:
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
static bool firmware_check_ready(struct net_device *dev,
|
static bool _rtl92e_fw_check_ready(struct net_device *dev,
|
||||||
u8 load_fw_status)
|
u8 load_fw_status)
|
||||||
{
|
{
|
||||||
struct r8192_priv *priv = rtllib_priv(dev);
|
struct r8192_priv *priv = rtllib_priv(dev);
|
||||||
struct rt_firmware *pfirmware = priv->pFirmware;
|
struct rt_firmware *pfirmware = priv->pFirmware;
|
||||||
|
@ -304,7 +304,7 @@ bool rtl92e_init_fw(struct net_device *dev)
|
||||||
if (!rt_status)
|
if (!rt_status)
|
||||||
goto download_firmware_fail;
|
goto download_firmware_fail;
|
||||||
|
|
||||||
if (!firmware_check_ready(dev, i))
|
if (!_rtl92e_fw_check_ready(dev, i))
|
||||||
goto download_firmware_fail;
|
goto download_firmware_fail;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue