From mboxrd@z Thu Jan 1 00:00:00 1970 From: Stephen Boyd Date: Wed, 08 Apr 2015 18:25:52 +0000 Subject: Re: [PATCH 1/2] clk: versatile: test returned value Message-Id: <552572B0.2090207@codeaurora.org> List-Id: References: <1428159570-19467-1-git-send-email-Julia.Lawall@lip6.fr> <1428159570-19467-2-git-send-email-Julia.Lawall@lip6.fr> In-Reply-To: <1428159570-19467-2-git-send-email-Julia.Lawall@lip6.fr> MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit To: Julia Lawall , Mike Turquette , Linus Walleij Cc: kernel-janitors@vger.kernel.org, linux-clk@vger.kernel.org, Linux Kernel Mailing List On 04/04/15 07:59, Julia Lawall wrote: > Put NULL test on the result of the previous call instead on one of its > arguments. A simplified version of the semantic match that finds this > problem is as follows (http://coccinelle.lip6.fr/): > > // > r@ > expression *e1; > expression *e2; > identifier f; > statement S1,S2; > @@ > > e1 = f(...,e2,...); > ( > if (e1 = NULL || ...) S1 else S2 > | > *if (e2 = NULL || ...) S1 else S2 > ) > // > > Signed-off-by: Julia Lawall > > --- Looks right. Linus? > drivers/clk/versatile/clk-versatile.c | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/drivers/clk/versatile/clk-versatile.c b/drivers/clk/versatile/clk-versatile.c > index a76981e..7a4f863 100644 > --- a/drivers/clk/versatile/clk-versatile.c > +++ b/drivers/clk/versatile/clk-versatile.c > @@ -69,7 +69,7 @@ static void __init cm_osc_setup(struct device_node *np, > struct device_node *parent; > > parent = of_get_parent(np); > - if (!np) { > + if (!parent) { > pr_err("no parent on core module clock\n"); > return; > } > -- Qualcomm Innovation Center, Inc. is a member of Code Aurora Forum, a Linux Foundation Collaborative Project