Commit 1bae9958 authored by Axel Lin's avatar Axel Lin Committed by Rafael J. Wysocki

cpufreq: OMAP: Check IS_ERR() instead of NULL for omap_device_get_by_hwmod_name

omap_device_get_by_hwmod_name() returns ERR_PTR on error.
Signed-off-by: default avatarAxel Lin <axel.lin@gmail.com>
Acked-by: default avatarKevin Hilman <khilman@ti.com>
Signed-off-by: default avatarRafael J. Wysocki <rjw@sisk.pl>
parent cd664cc3
...@@ -266,9 +266,9 @@ static int __init omap_cpufreq_init(void) ...@@ -266,9 +266,9 @@ static int __init omap_cpufreq_init(void)
} }
mpu_dev = omap_device_get_by_hwmod_name("mpu"); mpu_dev = omap_device_get_by_hwmod_name("mpu");
if (!mpu_dev) { if (IS_ERR(mpu_dev)) {
pr_warning("%s: unable to get the mpu device\n", __func__); pr_warning("%s: unable to get the mpu device\n", __func__);
return -EINVAL; return PTR_ERR(mpu_dev);
} }
mpu_reg = regulator_get(mpu_dev, "vcc"); mpu_reg = regulator_get(mpu_dev, "vcc");
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment