提交 74a189ef 编写于 作者: A Anson Huang 提交者: Viresh Kumar

cpufreq: imx6q-cpufreq: Improve the logic of -EPROBE_DEFER handling

Improve the -EPROBE_DEFER handling logic to simplify the code.
Signed-off-by: NAnson Huang <Anson.Huang@nxp.com>
Signed-off-by: NViresh Kumar <viresh.kumar@linaro.org>
上级 0c868627
......@@ -400,11 +400,9 @@ static int imx6q_cpufreq_probe(struct platform_device *pdev)
ret = imx6q_opp_check_speed_grading(cpu_dev);
}
if (ret) {
if (ret == -EPROBE_DEFER)
goto out_free_opp;
dev_err(cpu_dev, "failed to read ocotp: %d\n",
ret);
if (ret != -EPROBE_DEFER)
dev_err(cpu_dev, "failed to read ocotp: %d\n",
ret);
goto out_free_opp;
}
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册