[PATCH] soc: rockchip: power-domain: don't try to print the clock name in error case
Caesar Wang
caesar.upstream at gmail.com
Thu Oct 15 18:19:34 PDT 2015
Heiko,
Thanks to fix it.
在 2015年10月15日 21:22, Heiko Stübner 写道:
> When we never got the the clock-reference, i.e. when IS_ERR(clk) is true,
> don't try to print the clock name via %pC as this of course produces a
> null-pointer-dereference in __clk_get_name().
>
> Signed-off-by: Heiko Stuebner <heiko at sntech.de>
Look good to me, you can free add that.
Reviewed-by: Caesar Wang <wxt at rock-chips.com>
> ---
> drivers/soc/rockchip/pm_domains.c | 4 ++--
> 1 file changed, 2 insertions(+), 2 deletions(-)
>
> diff --git a/drivers/soc/rockchip/pm_domains.c b/drivers/soc/rockchip/pm_domains.c
> index 8268d5d..534c589 100644
> --- a/drivers/soc/rockchip/pm_domains.c
> +++ b/drivers/soc/rockchip/pm_domains.c
> @@ -265,8 +265,8 @@ static int rockchip_pm_add_one_domain(struct rockchip_pmu *pmu,
> if (IS_ERR(clk)) {
> error = PTR_ERR(clk);
> dev_err(pmu->dev,
> - "%s: failed to get clk %pC (index %d): %d\n",
> - node->name, clk, i, error);
> + "%s: failed to get clk at index %d: %d\n",
> + node->name, i, error);
> goto err_out;
> }
>
>
> --
> Thanks,
> Caesar
More information about the linux-arm-kernel
mailing list