mirror of
https://github.com/torvalds/linux.git
synced 2024-11-05 19:41:54 +00:00
Staging: rtl8712: fix an error test in start_drv_threads()
Testing for "if (IS_ERR(padapter->cmdThread) < 0)" doesn't make sense. The kthread_run() function returns error pointers on error pointers on error so it should just be "if (IS_ERR(padapter->cmdThread))". Signed-off-by: Dan Carpenter <dan.carpenter@oracle.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
879cb0c986
commit
b16aad354a
@ -239,7 +239,7 @@ static u32 start_drv_threads(struct _adapter *padapter)
|
||||
{
|
||||
padapter->cmdThread = kthread_run(r8712_cmd_thread, padapter, "%s",
|
||||
padapter->pnetdev->name);
|
||||
if (IS_ERR(padapter->cmdThread) < 0)
|
||||
if (IS_ERR(padapter->cmdThread))
|
||||
return _FAIL;
|
||||
return _SUCCESS;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user