staging: rtl8723bs: Remove unnecessary braces

Remove unnecessary braces for single statement block.
Issue found by checkpatch.

Signed-off-by: Javier F. Arias <jarias.linux@gmail.com>
Acked-by: Julia Lawall <julia.lawall@lip6.fr>
Link: https://lore.kernel.org/r/20191006133016.GA22297@gmail.com
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
Javier F. Arias 2019-10-06 08:30:19 -05:00 committed by Greg Kroah-Hartman
parent b91fec1ecf
commit bf653da862

View file

@ -3022,9 +3022,8 @@ int rtw_sctx_wait(struct submit_ctx *sctx, const char *msg)
status = sctx->status;
}
if (status == RTW_SCTX_DONE_SUCCESS) {
if (status == RTW_SCTX_DONE_SUCCESS)
ret = _SUCCESS;
}
return ret;
}