Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 248823
b: refs/heads/master
c: 69248d4
h: refs/heads/master
i:
  248821: 68e119f
  248819: 2186fa4
  248815: 29f053a
v: v3
  • Loading branch information
Jingoo Han authored and Greg Kroah-Hartman committed May 7, 2011
1 parent ee17ca7 commit 09703ca
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: 7af85a85878bd1a2695408e5856aba8ef9f71b60
refs/heads/master: 69248d4281fda03dd4da982e1d51f6b22cf1a109
4 changes: 2 additions & 2 deletions trunk/drivers/usb/host/ohci-s3c2410.c
Original file line number Diff line number Diff line change
Expand Up @@ -362,14 +362,14 @@ static int usb_hcd_s3c2410_probe(const struct hc_driver *driver,
clk = clk_get(&dev->dev, "usb-host");
if (IS_ERR(clk)) {
dev_err(&dev->dev, "cannot get usb-host clock\n");
retval = -ENOENT;
retval = PTR_ERR(clk);
goto err_mem;
}

usb_clk = clk_get(&dev->dev, "usb-bus-host");
if (IS_ERR(usb_clk)) {
dev_err(&dev->dev, "cannot get usb-bus-host clock\n");
retval = -ENOENT;
retval = PTR_ERR(usb_clk);
goto err_clk;
}

Expand Down

0 comments on commit 09703ca

Please sign in to comment.