Commit 3dbcdf18 authored by Javier F. Arias's avatar Javier F. Arias Committed by Greg Kroah-Hartman

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: default avatarJavier F. Arias <jarias.linux@gmail.com>
Link: https://lore.kernel.org/r/20191007033202.45czxuochtylkddf@gmail.comSigned-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 164eec46
...@@ -2992,7 +2992,7 @@ int rtw_xmit_thread(void *context) ...@@ -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);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment