Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 317992
b: refs/heads/master
c: 626888d
h: refs/heads/master
v: v3
  • Loading branch information
Marek Belisko authored and Greg Kroah-Hartman committed Jul 17, 2012
1 parent 2000a96 commit 891dcb0
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: 949f5a505cb19248a941d404fd64d2e37a87a059
refs/heads/master: 626888df7fc7ed26d1e7edfdea3f6c85912175fc
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 @@ -70,7 +70,7 @@ static int ft1000_probe(struct usb_interface *interface,
ft1000dev = kzalloc(sizeof(struct ft1000_device), GFP_KERNEL);

if (!ft1000dev) {
printk(KERN_ERR "out of memory allocating device structure\n");
pr_err("out of memory allocating device structure\n");
return -ENOMEM;
}

Expand Down Expand Up @@ -138,7 +138,7 @@ static int ft1000_probe(struct usb_interface *interface,

ret = request_firmware(&dsp_fw, "ft3000.img", &dev->dev);
if (ret < 0) {
printk(KERN_ERR "Error request_firmware().\n");
pr_err("Error request_firmware().\n");
goto err_fw;
}

Expand Down Expand Up @@ -166,7 +166,7 @@ static int ft1000_probe(struct usb_interface *interface,
DEBUG("In probe: pft1000info=%p\n", pft1000info);
ret = dsp_reload(ft1000dev);
if (ret) {
printk(KERN_ERR "Problem with DSP image loading\n");
pr_err("Problem with DSP image loading\n");
goto err_load;
}

Expand Down

0 comments on commit 891dcb0

Please sign in to comment.