summaryrefslogtreecommitdiffstats
path: root/drivers
diff options
context:
space:
mode:
authorVaibhav Hiremath <vaibhav.hiremath@linaro.org>2016-02-17 01:27:52 +0530
committerGreg Kroah-Hartman <gregkh@google.com>2016-02-16 19:11:34 -0800
commitee97e24ac63510c5836ac71ce88c9f61e265ee84 (patch)
treeb908125afffa96160735979dad36a9cbe30a1914 /drivers
parent4a7908cb71875991cabb2194c1c6b05cb97187ae (diff)
greybus: arche-apb-ctrl: Do not coldboot APBs in probe
Since parent driver (SVC) is controlling APBs directly, we do not need to bringup APBs in its own probe. Testing Done: Tested on EVT1.2. Signed-off-by: Vaibhav Hiremath <vaibhav.hiremath@linaro.org> Reviewed-by: Michael Scott <michael.scott@linaro.org> Signed-off-by: Greg Kroah-Hartman <gregkh@google.com>
Diffstat (limited to 'drivers')
-rw-r--r--drivers/staging/greybus/arche-apb-ctrl.c9
1 files changed, 0 insertions, 9 deletions
diff --git a/drivers/staging/greybus/arche-apb-ctrl.c b/drivers/staging/greybus/arche-apb-ctrl.c
index b888da376b21..3086306f04fb 100644
--- a/drivers/staging/greybus/arche-apb-ctrl.c
+++ b/drivers/staging/greybus/arche-apb-ctrl.c
@@ -387,15 +387,6 @@ int arche_apb_ctrl_probe(struct platform_device *pdev)
return ret;
}
- ret = coldboot_seq(pdev);
- if (ret) {
- dev_err(dev, "failed to set init state of control signal %d\n",
- ret);
- device_remove_file(dev, &dev_attr_state);
- platform_set_drvdata(pdev, NULL);
- return ret;
- }
-
dev_info(&pdev->dev, "Device registered successfully\n");
return 0;
}