1
0
Fork 0

soc/tegra: pmc: Use consistent naming for PM domains

The various error messages refer to the PM domains as "power domain",
"genpd" and "PM domain". That's confusing, so convert all error messages
to use the most prominent: "PM domain".

Acked-by: Jon Hunter <jonathanh@nvidia.com>
Signed-off-by: Thierry Reding <treding@nvidia.com>
hifive-unleashed-5.1
Thierry Reding 2016-11-08 11:05:03 +01:00
parent 0b137340d0
commit 4522112069
1 changed files with 4 additions and 4 deletions

View File

@ -865,19 +865,19 @@ static void tegra_powergate_add(struct tegra_pmc *pmc, struct device_node *np)
err = pm_genpd_init(&pg->genpd, NULL, off);
if (err < 0) {
pr_err("failed to initialise power domain %s: %d\n", np->name,
pr_err("failed to initialise PM domain %s: %d\n", np->name,
err);
goto remove_resets;
}
err = of_genpd_add_provider_simple(np, &pg->genpd);
if (err < 0) {
pr_err("failed to add genpd provider for %s: %d\n", np->name,
err);
pr_err("failed to add PM domain provider for %s: %d\n",
np->name, err);
goto remove_genpd;
}
pr_debug("added power domain %s\n", pg->genpd.name);
pr_debug("added PM domain %s\n", pg->genpd.name);
return;