summaryrefslogtreecommitdiff
path: root/drivers/misc
diff options
context:
space:
mode:
Diffstat (limited to 'drivers/misc')
-rw-r--r--drivers/misc/c55_ctrl.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/drivers/misc/c55_ctrl.c b/drivers/misc/c55_ctrl.c
index 3516ac16706..ccb1a6b32b6 100644
--- a/drivers/misc/c55_ctrl.c
+++ b/drivers/misc/c55_ctrl.c
@@ -327,7 +327,8 @@ static int c55_ctrl_probe(struct platform_device *pdev)
else if (regulator_enable(cdata->reg_vddldo))
dev_err(&pdev->dev, "regulator_enable failed for vddldo\n");
- cdata->c55_mode = C55_OFF;
+ /* M4 by default has C55 ON at power up */
+ cdata->c55_mode = C55_ON;
ret = device_create_file(&pdev->dev, &dev_attr_enable);
if (ret) {