aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/soc
diff options
context:
space:
mode:
authorDmitry Baryshkov <dmitry.baryshkov@linaro.org>2021-10-20 04:26:39 +0300
committerBjorn Andersson <bjorn.andersson@linaro.org>2021-10-23 23:34:26 -0500
commit086f52fdc8f7bd273d06a3de2adf65a063eb5392 (patch)
treeefdab47961ac42c8942b9317e26d576b11dd84bf /drivers/soc
parentdt-bindings: arm: cpus: Document qcom,msm8916-smp enable-method (diff)
downloadlinux-dev-086f52fdc8f7bd273d06a3de2adf65a063eb5392.tar.xz
linux-dev-086f52fdc8f7bd273d06a3de2adf65a063eb5392.zip
soc: qcom: rpmhpd: fix sm8350_mxc's peer domain
The sm8350_mxc's domain description incorrectly references sm8150_mmcx_ao as a peer instead of sm8350_mxc_ao. Correct this typo. Fixes: 639c85628757 ("soc: qcom: rpmhpd: Add SM8350 power domains") Cc: Vinod Koul <vkoul@kernel.org> Signed-off-by: Dmitry Baryshkov <dmitry.baryshkov@linaro.org> Signed-off-by: Bjorn Andersson <bjorn.andersson@linaro.org> Link: https://lore.kernel.org/r/20211020012639.1183806-1-dmitry.baryshkov@linaro.org
Diffstat (limited to 'drivers/soc')
-rw-r--r--drivers/soc/qcom/rpmhpd.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/soc/qcom/rpmhpd.c b/drivers/soc/qcom/rpmhpd.c
index 0ca77ed22c6c..1118345d8824 100644
--- a/drivers/soc/qcom/rpmhpd.c
+++ b/drivers/soc/qcom/rpmhpd.c
@@ -221,7 +221,7 @@ static const struct rpmhpd_desc sm8250_desc = {
static struct rpmhpd sm8350_mxc_ao;
static struct rpmhpd sm8350_mxc = {
.pd = { .name = "mxc", },
- .peer = &sm8150_mmcx_ao,
+ .peer = &sm8350_mxc_ao,
.res_name = "mxc.lvl",
};