Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 25741
b: refs/heads/master
c: 4d45e21
h: refs/heads/master
i:
  25739: 1fcec6d
v: v3
  • Loading branch information
matthieu castet authored and Greg Kroah-Hartman committed Apr 14, 2006
1 parent 3b850a9 commit 19c46a3
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: 584958c3d2985396bdb6f96ae632971b43f6f984
refs/heads/master: 4d45e21867bee51e3bb42e95bc2929231d7c8192
6 changes: 3 additions & 3 deletions trunk/drivers/usb/atm/ueagle-atm.c
Original file line number Diff line number Diff line change
Expand Up @@ -1376,7 +1376,7 @@ static int uea_boot(struct uea_softc *sc)
if (ret < 0) {
uea_err(INS_TO_USBDEV(sc),
"urb submition failed with error %d\n", ret);
goto err1;
goto err;
}

sc->kthread = kthread_run(uea_kthread, sc, "ueagle-atm");
Expand All @@ -1390,10 +1390,10 @@ static int uea_boot(struct uea_softc *sc)

err2:
usb_kill_urb(sc->urb_int);
err1:
kfree(intr);
err:
usb_free_urb(sc->urb_int);
sc->urb_int = NULL;
kfree(intr);
uea_leaves(INS_TO_USBDEV(sc));
return -ENOMEM;
}
Expand Down

0 comments on commit 19c46a3

Please sign in to comment.