summaryrefslogtreecommitdiffstats
path: root/drivers/pinctrl/qcom
diff options
context:
space:
mode:
authorLinus Walleij <linus.walleij@linaro.org>2022-06-27 11:20:46 +0200
committerLinus Walleij <linus.walleij@linaro.org>2022-06-27 11:22:59 +0200
commit61a2cc093bdcb96cd3e3ed2082c3c30e3795d87e (patch)
tree542b23d81bb5175c7bb49afa2199e5ad25949e1f /drivers/pinctrl/qcom
parent243a0ef843c86e29ca7a62ee70fe0e005eeaa0fb (diff)
downloadlinux-61a2cc093bdcb96cd3e3ed2082c3c30e3795d87e.tar.bz2
pinctrl: qcom: sc7280: Fix compile bug
The idea was right but the code was breaking in next. I assume some unstaged commit was involed. Fix it up. Cc: Srinivasa Rao Mandadapu <quic_srivasam@quicinc.com> Cc: Stephen Boyd <swboyd@chromium.org> Fixes: 36fe26843d6d ("pinctrl: qcom: sc7280: Add clock optional check for ADSP bypass targets") Signed-off-by: Linus Walleij <linus.walleij@linaro.org>
Diffstat (limited to 'drivers/pinctrl/qcom')
-rw-r--r--drivers/pinctrl/qcom/pinctrl-lpass-lpi.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/drivers/pinctrl/qcom/pinctrl-lpass-lpi.c b/drivers/pinctrl/qcom/pinctrl-lpass-lpi.c
index b3d4244a5266..b5d1b996c454 100644
--- a/drivers/pinctrl/qcom/pinctrl-lpass-lpi.c
+++ b/drivers/pinctrl/qcom/pinctrl-lpass-lpi.c
@@ -388,7 +388,8 @@ int lpi_pinctrl_probe(struct platform_device *pdev)
pctrl->data = data;
pctrl->dev = &pdev->dev;
- data->is_clk_optional = of_property_read_bool(np, "qcom,adsp-bypass-mode");
+ data->is_clk_optional = of_property_read_bool(dev->of_node,
+ "qcom,adsp-bypass-mode");
pctrl->clks[0].id = "core";
pctrl->clks[1].id = "audio";