Commit af77132e authored by Bjorn Andersson's avatar Bjorn Andersson
Browse files

soc: qcom: rpmhpd: Don't warn about sparse rpmhpd arrays



In some cases the DT binding will fully describe the set of available
RPMh power-domains, but there is no reason for exposing them all in the
implementation.

Omitting individual data->domains is handle gracefully by
of_genpd_add_provider_onecell(), so there's no reason for printing a
warning when this occurs.

Signed-off-by: default avatarBjorn Andersson <bjorn.andersson@linaro.org>
Reviewed-by: default avatarJohan Hovold <johan+linaro@kernel.org>
Link: https://lore.kernel.org/r/20220426233508.1762345-3-bjorn.andersson@linaro.org
parent dbfb5f94
Loading
Loading
Loading
Loading
+1 −3
Original line number Diff line number Diff line
@@ -613,10 +613,8 @@ static int rpmhpd_probe(struct platform_device *pdev)
	data->num_domains = num_pds;

	for (i = 0; i < num_pds; i++) {
		if (!rpmhpds[i]) {
			dev_warn(dev, "rpmhpds[%d] is empty\n", i);
		if (!rpmhpds[i])
			continue;
		}

		rpmhpds[i]->dev = dev;
		rpmhpds[i]->addr = cmd_db_read_addr(rpmhpds[i]->res_name);