diff options
author | Dmitry Osipenko <digetx@gmail.com> | 2021-03-02 15:25:01 +0300 |
---|---|---|
committer | Thierry Reding <treding@nvidia.com> | 2021-03-26 15:10:25 +0300 |
commit | 366d7c643a8a9db652341e314b33d3fc80595e6c (patch) | |
tree | 05ee114fb8a1cc0117fb528f0ca01ababc422b16 /drivers/soc | |
parent | 66ee50c6e23432efded0c34ea71428f97cac808a (diff) | |
download | linux-366d7c643a8a9db652341e314b33d3fc80595e6c.tar.xz |
soc/tegra: pmc: Print out domain name when reset fails to acquire
Print out domain name when reset fails to acquire for debugging purposes
and to make formatting of GENPD errors consistent in the driver.
Tested-by: Peter Geis <pgwipeout@gmail.com> # Ouya T30
Tested-by: Nicolas Chauvet <kwizart@gmail.com> # PAZ00 T20 and TK1 T124
Tested-by: Matt Merhar <mattmerhar@protonmail.com> # Ouya T30
Signed-off-by: Dmitry Osipenko <digetx@gmail.com>
Signed-off-by: Thierry Reding <treding@nvidia.com>
Diffstat (limited to 'drivers/soc')
-rw-r--r-- | drivers/soc/tegra/pmc.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/drivers/soc/tegra/pmc.c b/drivers/soc/tegra/pmc.c index 8245fbadc938..6bd22359d411 100644 --- a/drivers/soc/tegra/pmc.c +++ b/drivers/soc/tegra/pmc.c @@ -890,7 +890,8 @@ static int tegra_genpd_power_off(struct generic_pm_domain *domain) err = reset_control_acquire(pg->reset); if (err < 0) { - pr_err("failed to acquire resets: %d\n", err); + dev_err(dev, "failed to acquire resets for PM domain %s: %d\n", + pg->genpd.name, err); return err; } |