From: Thierry Reding Date: Thu, 9 Jul 2015 07:59:55 +0000 (+0200) Subject: soc/tegra: pmc: Avoid usage of uninitialized variable X-Git-Tag: v4.1.8~13 X-Git-Url: https://www.infradead.org/git/?a=commitdiff_plain;h=72cdf324731e08faebd16a6a281872f6f7d8fcb2;p=users%2Fjedix%2Flinux-maple.git soc/tegra: pmc: Avoid usage of uninitialized variable commit 95169cd23bfa88003f8be06234dbd65f5737add0 upstream. Make sure to only drop the reference to the OF node after it's been successfully obtained. Fixes: 3568df3d31d6 ("soc: tegra: Add thermal reset (thermtrip) support to PMC") Reviewed-by: Mikko Perttunen Signed-off-by: Thierry Reding Signed-off-by: Greg Kroah-Hartman --- diff --git a/drivers/soc/tegra/pmc.c b/drivers/soc/tegra/pmc.c index c956395cf46f9..c89bada875f85 100644 --- a/drivers/soc/tegra/pmc.c +++ b/drivers/soc/tegra/pmc.c @@ -732,12 +732,12 @@ void tegra_pmc_init_tsense_reset(struct tegra_pmc *pmc) u32 value, checksum; if (!pmc->soc->has_tsense_reset) - goto out; + return; np = of_find_node_by_name(pmc->dev->of_node, "i2c-thermtrip"); if (!np) { dev_warn(dev, "i2c-thermtrip node not found, %s.\n", disabled); - goto out; + return; } if (of_property_read_u32(np, "nvidia,i2c-controller-id", &ctrl_id)) {