Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 358450
b: refs/heads/master
c: 3a3656d
h: refs/heads/master
v: v3
  • Loading branch information
Wei Yongjun authored and Rafael J. Wysocki committed Feb 22, 2013
1 parent ca82a4b commit 05a276e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 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: d6561bb206aae9de8eee4516549339ee96386b87
refs/heads/master: 3a3656d4011625cf98f8cc351968fe30af3cc9ac
2 changes: 1 addition & 1 deletion trunk/drivers/cpufreq/imx6q-cpufreq.c
Original file line number Diff line number Diff line change
Expand Up @@ -245,7 +245,7 @@ static int imx6q_cpufreq_probe(struct platform_device *pdev)
arm_reg = devm_regulator_get(cpu_dev, "arm");
pu_reg = devm_regulator_get(cpu_dev, "pu");
soc_reg = devm_regulator_get(cpu_dev, "soc");
if (!arm_reg || !pu_reg || !soc_reg) {
if (IS_ERR(arm_reg) || IS_ERR(pu_reg) || IS_ERR(soc_reg)) {
dev_err(cpu_dev, "failed to get regulators\n");
ret = -ENOENT;
goto put_node;
Expand Down

0 comments on commit 05a276e

Please sign in to comment.