From mboxrd@z Thu Jan 1 00:00:00 1970 From: Jacek Anaszewski Subject: Re: [PATCH] leds: tlc591xx: fix device_node_continue.cocci warnings (fwd) Date: Fri, 7 Dec 2018 23:25:50 +0100 Message-ID: References: Mime-Version: 1.0 Content-Type: text/plain; charset=utf-8; format=flowed Content-Transfer-Encoding: 7bit Return-path: In-Reply-To: Content-Language: en-US Sender: linux-kernel-owner@vger.kernel.org To: Julia Lawall , Jyri Sarha Cc: Peter Ujfalusi , Pavel Machek , linux-leds@vger.kernel.org, linux-kernel@vger.kernel.org, kbuild-all@01.org List-Id: linux-leds@vger.kernel.org Hi Julia, Thank you for the patch, but it doesn't apply to LED tree. The patch causing the problem is out-of-LED-tree. Best regards, Jacek Anaszewski On 12/6/18 9:28 PM, Julia Lawall wrote: > Hello, > > The code seems to be wrong in several ways. If the continue is wanted, > the of_node_put is not needed; it will happen on the next iteration. If > the continue is not wanted, the of_node_put is needed, and the continue > should be dropped. > > julia > > ---------- Forwarded message ---------- > Date: Thu, 6 Dec 2018 19:48:54 +0800 > From: kbuild test robot > To: kbuild@01.org > Cc: Julia Lawall > Subject: [PATCH] leds: tlc591xx: fix device_node_continue.cocci warnings > > CC: kbuild-all@01.org > TO: Jyri Sarha > CC: Peter Ujfalusi > CC: Jacek Anaszewski > CC: Pavel Machek > CC: linux-leds@vger.kernel.org > CC: linux-kernel@vger.kernel.org > > From: kbuild test robot > > drivers/leds/leds-tlc591xx.c:342:3-14: ERROR: probable double put. > > Device node iterators put the previous value of the index variable, so an > explicit put causes a double put. > > Generated by: scripts/coccinelle/iterators/device_node_continue.cocci > > Fixes: 7b2d34aaede7 ("leds: tlc591xx: Add gpio output support") > CC: Jyri Sarha > Signed-off-by: kbuild test robot > --- > > tree: https://github.com/omap-audio/linux-audio peter/ti-linux-4.19.y/wip > head: 838f24e2deaf1229002bd6555eb7e889b09ac1f9 > commit: 7b2d34aaede727b4abfc78061bbd2202fcd92bc8 [62/67] leds: tlc591xx: Add gpio output support > :::::: branch date: 26 hours ago > :::::: commit date: 26 hours ago > > Please take the patch only if it's a positive warning. Thanks! > > leds-tlc591xx.c | 1 - > 1 file changed, 1 deletion(-) > > --- a/drivers/leds/leds-tlc591xx.c > +++ b/drivers/leds/leds-tlc591xx.c > @@ -339,7 +339,6 @@ tlc591xx_probe(struct i2c_client *client > for_each_child_of_node(np, child) { > err = of_property_read_u32(child, "reg", ®); > if (err) { > - of_node_put(child); > continue; > return err; > } >