Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

soc: qcom: pd_mapper: Add more older platforms without domains

MSM8909, MSM8916 and MSM8939 all do not make use of pd-mapper, add them to
the list similar to the other older platforms to avoid the following
message in dmesg when booting:

"PDM: no support for the platform, userspace daemon might be required."

Signed-off-by: Stephan Gerhold <stephan.gerhold@linaro.org>
Reviewed-by: Dmitry Baryshkov <dmitry.baryshkov@linaro.org>
Link: https://lore.kernel.org/r/20240708-x1e80100-pd-mapper-v1-2-854386af4cf5@linaro.org
Signed-off-by: Bjorn Andersson <andersson@kernel.org>

authored by

Stephan Gerhold and committed by
Bjorn Andersson
ed2c3752 bd6db1f1

+4
+4
drivers/soc/qcom/qcom_pd_mapper.c
··· 527 527 }; 528 528 529 529 static const struct of_device_id qcom_pdm_domains[] __maybe_unused = { 530 + { .compatible = "qcom,apq8016", .data = NULL, }, 530 531 { .compatible = "qcom,apq8064", .data = NULL, }, 531 532 { .compatible = "qcom,apq8074", .data = NULL, }, 532 533 { .compatible = "qcom,apq8084", .data = NULL, }, 533 534 { .compatible = "qcom,apq8096", .data = msm8996_domains, }, 534 535 { .compatible = "qcom,msm8226", .data = NULL, }, 536 + { .compatible = "qcom,msm8909", .data = NULL, }, 537 + { .compatible = "qcom,msm8916", .data = NULL, }, 538 + { .compatible = "qcom,msm8939", .data = NULL, }, 535 539 { .compatible = "qcom,msm8974", .data = NULL, }, 536 540 { .compatible = "qcom,msm8996", .data = msm8996_domains, }, 537 541 { .compatible = "qcom,msm8998", .data = msm8998_domains, },