If the _calc_rate() function fails in the tegra clock code, print the name of the clock that failed to allow debugging. Signed-off-by: Ben Dooks <ben.dooks@xxxxxxxxxxxxxxx> --- drivers/clk/tegra/clk-pll.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/drivers/clk/tegra/clk-pll.c b/drivers/clk/tegra/clk-pll.c index 830d1c87fa7c..d1339a6139a1 100644 --- a/drivers/clk/tegra/clk-pll.c +++ b/drivers/clk/tegra/clk-pll.c @@ -576,8 +576,8 @@ static int _calc_rate(struct clk_hw *hw, struct tegra_clk_pll_freq_table *cfg, cfreq = parent_rate / (parent_rate / 1000000); break; default: - pr_err("%s Unexpected reference rate %lu\n", - __func__, parent_rate); + pr_err("%s Unexpected reference rate %lu for %s\n", + __func__, parent_rate, __clk_get_name(hw->clk)); BUG(); } -- 2.18.0 -- To unsubscribe from this list: send the line "unsubscribe linux-tegra" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html