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:
Javier F. Arias 2019-10-06 22:32:05 -05:00 committed by Greg Kroah-Hartman
parent 164eec46ea
commit 3dbcdf183b
1 changed files with 1 additions and 1 deletions

View File

@ -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);