From mboxrd@z Thu Jan 1 00:00:00 1970 From: julia.lawall@lip6.fr (Julia Lawall) Date: Fri, 9 Dec 2016 20:08:05 +0100 (CET) Subject: [PATCH] mmc: sdhci-xenon: fix device_node_continue.cocci warnings Message-ID: To: linux-arm-kernel@lists.infradead.org List-Id: linux-arm-kernel.lists.infradead.org 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 CC: Hu Ziji Signed-off-by: Julia Lawall Signed-off-by: Fengguang Wu --- Please check on this. I have only seen the code shown below, but the rule normally has a lot false positive rate. url: https://github.com/0day-ci/linux/commits/Gregory-CLEMENT/mmc-Add-support-to-Marvell-Xenon-SD-Host-Controller/20161210-002602 base: :::::: branch date: 2 hours ago :::::: commit date: 2 hours ago Please take the patch only if it's a positive warning. Thanks! sdhci-xenon.c | 1 - 1 file changed, 1 deletion(-) --- a/drivers/mmc/host/sdhci-xenon.c +++ b/drivers/mmc/host/sdhci-xenon.c @@ -423,7 +423,6 @@ static int xenon_child_node_of_parse(str MMC_CAP2_NO_SD | MMC_CAP2_NO_SDIO; } - of_node_put(child); } return 0;