Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 336477
b: refs/heads/master
c: 980f58a
h: refs/heads/master
i:
  336475: ff1268e
v: v3
  • Loading branch information
Stephen Boyd authored and Mike Turquette committed Oct 29, 2012
1 parent 866bbc3 commit 82b08c5
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 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: bcd6f569e87471d7f104bd9497f0b516a3b12e32
refs/heads/master: 980f58a45e04b248e9dd01b0eba510a3384160db
12 changes: 6 additions & 6 deletions trunk/drivers/clk/clk-wm831x.c
Original file line number Diff line number Diff line change
Expand Up @@ -371,20 +371,20 @@ static __devinit int wm831x_clk_probe(struct platform_device *pdev)

clkdata->xtal_hw.init = &wm831x_xtal_init;
clkdata->xtal = clk_register(&pdev->dev, &clkdata->xtal_hw);
if (!clkdata->xtal)
return -EINVAL;
if (IS_ERR(clkdata->xtal))
return PTR_ERR(clkdata->xtal);

clkdata->fll_hw.init = &wm831x_fll_init;
clkdata->fll = clk_register(&pdev->dev, &clkdata->fll_hw);
if (!clkdata->fll) {
ret = -EINVAL;
if (IS_ERR(clkdata->fll)) {
ret = PTR_ERR(clkdata->fll);
goto err_xtal;
}

clkdata->clkout_hw.init = &wm831x_clkout_init;
clkdata->clkout = clk_register(&pdev->dev, &clkdata->clkout_hw);
if (!clkdata->clkout) {
ret = -EINVAL;
if (IS_ERR(clkdata->clkout)) {
ret = PTR_ERR(clkdata->clkout);
goto err_fll;
}

Expand Down

0 comments on commit 82b08c5

Please sign in to comment.