summaryrefslogtreecommitdiffstats
path: root/drivers/remoteproc/keystone_remoteproc.c
diff options
context:
space:
mode:
authorPhilipp Zabel2017-07-19 17:26:15 +0200
committerBjorn Andersson2017-08-28 08:16:22 +0200
commitf5f98654a28eb86c97ff0d9b487d97cbc97ae855 (patch)
treedbf392ffb69d6dbc6ed339c4939d600d4e71e369 /drivers/remoteproc/keystone_remoteproc.c
parentremoteproc/keystone: Add support for Keystone 66AK2G SOCs (diff)
downloadkernel-qcow2-linux-f5f98654a28eb86c97ff0d9b487d97cbc97ae855.tar.gz
kernel-qcow2-linux-f5f98654a28eb86c97ff0d9b487d97cbc97ae855.tar.xz
kernel-qcow2-linux-f5f98654a28eb86c97ff0d9b487d97cbc97ae855.zip
remoteproc/keystone: explicitly request exclusive reset control
Commit a53e35db70d1 ("reset: Ensure drivers are explicit when requesting reset lines") started to transition the reset control request API calls to explicitly state whether the driver needs exclusive or shared reset control behavior. Convert all drivers requesting exclusive resets to the explicit API call so the temporary transition helpers can be removed. No functional changes. Cc: Ohad Ben-Cohen <ohad@wizery.com> Cc: Bjorn Andersson <bjorn.andersson@linaro.org> Cc: linux-remoteproc@vger.kernel.org Acked-by: Suman Anna <s-anna@ti.com> Signed-off-by: Philipp Zabel <p.zabel@pengutronix.de> Signed-off-by: Bjorn Andersson <bjorn.andersson@linaro.org>
Diffstat (limited to 'drivers/remoteproc/keystone_remoteproc.c')
-rw-r--r--drivers/remoteproc/keystone_remoteproc.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/remoteproc/keystone_remoteproc.c b/drivers/remoteproc/keystone_remoteproc.c
index 97abb0c8ad65..aaac31134e39 100644
--- a/drivers/remoteproc/keystone_remoteproc.c
+++ b/drivers/remoteproc/keystone_remoteproc.c
@@ -410,7 +410,7 @@ static int keystone_rproc_probe(struct platform_device *pdev)
if (ret)
goto free_rproc;
- ksproc->reset = devm_reset_control_get(dev, NULL);
+ ksproc->reset = devm_reset_control_get_exclusive(dev, NULL);
if (IS_ERR(ksproc->reset)) {
ret = PTR_ERR(ksproc->reset);
goto free_rproc;