[PATCH] clk: tegra: fix return value check in tegra_clk_register_pllc()

Peter De Schrijver pdeschrijver at nvidia.com
Thu Nov 28 08:10:29 EST 2013


On Tue, Oct 29, 2013 at 03:07:57AM +0100, Wei Yongjun wrote:
> From: Wei Yongjun <yongjun_wei at trendmicro.com.cn>
> 
> In case of error, the function __clk_lookup() returns NULL pointer
> not ERR_PTR(). The IS_ERR() test in the return value check should
> be replaced with NULL test.
> 
> Signed-off-by: Wei Yongjun <yongjun_wei at trendmicro.com.cn>
> ---
>  drivers/clk/tegra/clk-pll.c | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/drivers/clk/tegra/clk-pll.c b/drivers/clk/tegra/clk-pll.c
> index 197074a..a99bef7 100644
> --- a/drivers/clk/tegra/clk-pll.c
> +++ b/drivers/clk/tegra/clk-pll.c
> @@ -1507,7 +1507,7 @@ struct clk *tegra_clk_register_pllc(const char *name, const char *parent_name,
>  		return ERR_PTR(-EINVAL);
>  
>  	parent = __clk_lookup(parent_name);
> -	if (IS_ERR(parent)) {
> +	if (!parent) {
>  		WARN(1, "parent clk %s of %s must be registered first\n",
>  			name, parent_name);
>  		return ERR_PTR(-EINVAL);
> 

Ah :( There are a few more instances of this. I will fix them all.



More information about the linux-arm-kernel mailing list