Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 108247
b: refs/heads/master
c: ff1a4a7
h: refs/heads/master
i:
  108245: 1c2e849
  108243: c36549a
  108239: 297acbd
v: v3
  • Loading branch information
Parag Warudkar authored and Linus Torvalds committed Aug 12, 2008
1 parent a6fd265 commit 002f2d6
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 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: 66198f36aac21533245a77aac4a8f7c8c509d8bd
refs/heads/master: ff1a4a7b14ae146142b1c93a001304caf662ae13
4 changes: 2 additions & 2 deletions trunk/drivers/usb/misc/isight_firmware.c
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,8 @@ static int isight_firmware_load(struct usb_interface *intf,

if (request_firmware(&firmware, "isight.fw", &dev->dev) != 0) {
printk(KERN_ERR "Unable to load isight firmware\n");
return -ENODEV;
ret = -ENODEV;
goto out;
}

ptr = firmware->data;
Expand Down Expand Up @@ -91,7 +92,6 @@ static int isight_firmware_load(struct usb_interface *intf,
buf, llen, 300) != llen) {
printk(KERN_ERR
"Failed to load isight firmware\n");
kfree(buf);
ret = -ENODEV;
goto out;
}
Expand Down

0 comments on commit 002f2d6

Please sign in to comment.