Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 228083
b: refs/heads/master
c: 2dab1ac
h: refs/heads/master
i:
  228081: d500810
  228079: 3725b77
v: v3
  • Loading branch information
Marek Belisko authored and Greg Kroah-Hartman committed Nov 11, 2010
1 parent 6dc58ad commit c92adb0
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: c8b124e21dbb7f4941f292fea446ce63d92d80dd
refs/heads/master: 2dab1ac81b4767095f96503a9ac093a68c6e9c95
6 changes: 3 additions & 3 deletions trunk/drivers/staging/ft1000/ft1000-usb/ft1000_usb.c
Original file line number Diff line number Diff line change
Expand Up @@ -178,15 +178,13 @@ static int ft1000_probe(struct usb_interface *interface,

if (IS_ERR(pft1000info->pPollThread)) {
ret = PTR_ERR(pft1000info->pPollThread);
goto err_load;
goto err_thread;
}

msleep(500);

while (!pft1000info->CardReady) {
if (gPollingfailed) {
if (pft1000info->pPollThread)
kthread_stop(pft1000info->pPollThread);
ret = -EIO;
goto err_load;
}
Expand All @@ -207,6 +205,8 @@ static int ft1000_probe(struct usb_interface *interface,
return 0;

err_load:
kthread_stop(pft1000info->pPollThread);
err_thread:
kfree(pFileStart);
err_fw:
kfree(ft1000dev);
Expand Down

0 comments on commit c92adb0

Please sign in to comment.