staging: rtl8723bs: Switch constant place in test
Switch constant place as it should be on the right side of the test. Issue found by checkpatch. Signed-off-by: Javier F. Arias <jarias.linux@gmail.com> Link: https://lore.kernel.org/r/20191007033202.45czxuochtylkddf@gmail.com Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
164eec46ea
commit
3dbcdf183b
|
@ -2992,7 +2992,7 @@ int rtw_xmit_thread(void *context)
|
||||||
do {
|
do {
|
||||||
err = rtw_hal_xmit_thread_handler(padapter);
|
err = rtw_hal_xmit_thread_handler(padapter);
|
||||||
flush_signals_thread();
|
flush_signals_thread();
|
||||||
} while (_SUCCESS == err);
|
} while (err == _SUCCESS);
|
||||||
|
|
||||||
complete(&padapter->xmitpriv.terminate_xmitthread_comp);
|
complete(&padapter->xmitpriv.terminate_xmitthread_comp);
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue