diff mbox series

soc: qcom: rpmhpd: fix sm8350_mxc's peer domain

Message ID 20211020012237.1182655-1-dmitry.baryshkov@linaro.org (mailing list archive)
State Superseded
Headers show
Series soc: qcom: rpmhpd: fix sm8350_mxc's peer domain | expand

Commit Message

Dmitry Baryshkov Oct. 20, 2021, 1:22 a.m. UTC
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>
---
 drivers/soc/qcom/rpmhpd.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
diff mbox series

Patch

diff --git a/drivers/soc/qcom/rpmhpd.c b/drivers/soc/qcom/rpmhpd.c
index fa209b479ab3..5fc5f04249d4 100644
--- a/drivers/soc/qcom/rpmhpd.c
+++ b/drivers/soc/qcom/rpmhpd.c
@@ -204,7 +204,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_mmcx_ao,
 	.res_name = "mxc.lvl",
 };