staging: rtl8723bs: fix typo in function name rtw_sctx_chk_waring_status
Trivial fix to typo in function name, rename it to rtw_sctx_chk_warning_status. Signed-off-by: Colin Ian King <colin.king@canonical.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
f549a60b8c
commit
3d49df58ab
@ -3033,7 +3033,7 @@ int rtw_sctx_wait(struct submit_ctx *sctx, const char *msg)
|
||||
return ret;
|
||||
}
|
||||
|
||||
static bool rtw_sctx_chk_waring_status(int status)
|
||||
static bool rtw_sctx_chk_warning_status(int status)
|
||||
{
|
||||
switch (status) {
|
||||
case RTW_SCTX_DONE_UNKNOWN:
|
||||
@ -3051,7 +3051,7 @@ static bool rtw_sctx_chk_waring_status(int status)
|
||||
void rtw_sctx_done_err(struct submit_ctx **sctx, int status)
|
||||
{
|
||||
if (*sctx) {
|
||||
if (rtw_sctx_chk_waring_status(status))
|
||||
if (rtw_sctx_chk_warning_status(status))
|
||||
DBG_871X("%s status:%d\n", __func__, status);
|
||||
(*sctx)->status = status;
|
||||
complete(&((*sctx)->done));
|
||||
|
Loading…
x
Reference in New Issue
Block a user