summaryrefslogtreecommitdiff
path: root/drivers/cpufreq/omap-cpufreq.c
diff options
context:
space:
mode:
authorEvan Wilson <evan@oliodevices.com>2015-12-11 16:55:48 -0800
committerEvan Wilson <evan@oliodevices.com>2015-12-11 16:55:48 -0800
commit606779d73f51a0ebe81f691bd7c173fc1740be24 (patch)
tree42e68bd40f3a375dfbb5ba940c6de9b4591f9016 /drivers/cpufreq/omap-cpufreq.c
parentb6602fe7788593d7c5e02ae7bb5616ebc6f63f2c (diff)
parentb258e74fe4251438954e0fc08575f4b15ab35605 (diff)
downloadolio-linux-3.10-606779d73f51a0ebe81f691bd7c173fc1740be24.tar.xz
olio-linux-3.10-606779d73f51a0ebe81f691bd7c173fc1740be24.zip
Merge remote-tracking branch 'olio/android-3.10-bringup' into 1.1.45
Conflicts: drivers/iio/imu/st_lsm6ds3/st_lsm6ds3_core.c drivers/iio/imu/st_lsm6ds3/st_lsm6ds3_trigger.c drivers/power/bq27x00_battery.c Change-Id: Iafb1129617680cd2705bc05eb49faaafff325692
Diffstat (limited to 'drivers/cpufreq/omap-cpufreq.c')
-rw-r--r--drivers/cpufreq/omap-cpufreq.c7
1 files changed, 5 insertions, 2 deletions
diff --git a/drivers/cpufreq/omap-cpufreq.c b/drivers/cpufreq/omap-cpufreq.c
index 0279d18a57f..3bdb1d9c786 100644
--- a/drivers/cpufreq/omap-cpufreq.c
+++ b/drivers/cpufreq/omap-cpufreq.c
@@ -246,16 +246,19 @@ static struct cpufreq_driver omap_driver = {
static int omap_cpufreq_probe(struct platform_device *pdev)
{
+ printk ("%s: OLIO: Entered\n", __FUNCTION__);
+
mpu_dev = get_cpu_device(0);
if (!mpu_dev) {
pr_warning("%s: unable to get the mpu device\n", __func__);
return -EINVAL;
}
- mpu_reg = regulator_get(mpu_dev, "vcc");
+ mpu_reg = regulator_get(mpu_dev, "vdd_mpu_iva"); /* OLIO: Orig "vcc" */
if (IS_ERR(mpu_reg)) {
- pr_warning("%s: unable to get MPU regulator\n", __func__);
+ pr_warning("%s: unable to get MPU regulator, will try again in a bit\n", __func__);
mpu_reg = NULL;
+ return -EPROBE_DEFER;
} else {
/*
* Ensure physical regulator is present.