staging: ft1000: Check return value of kthread_run.
kthread_run could fail so we will check return value. Signed-off-by: Marek Belisko <marek.belisko@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
This commit is contained in:
committed by
Greg Kroah-Hartman
parent
a10bb4fb19
commit
c8b124e21d
@@ -175,6 +175,12 @@ static int ft1000_probe(struct usb_interface *interface,
|
|||||||
gPollingfailed = FALSE;
|
gPollingfailed = FALSE;
|
||||||
pft1000info->pPollThread =
|
pft1000info->pPollThread =
|
||||||
kthread_run(ft1000_poll_thread, ft1000dev, "ft1000_poll");
|
kthread_run(ft1000_poll_thread, ft1000dev, "ft1000_poll");
|
||||||
|
|
||||||
|
if (IS_ERR(pft1000info->pPollThread)) {
|
||||||
|
ret = PTR_ERR(pft1000info->pPollThread);
|
||||||
|
goto err_load;
|
||||||
|
}
|
||||||
|
|
||||||
msleep(500);
|
msleep(500);
|
||||||
|
|
||||||
while (!pft1000info->CardReady) {
|
while (!pft1000info->CardReady) {
|
||||||
|
Reference in New Issue
Block a user