[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Message-Id: <20200415224010.1564330-1-colin.king@canonical.com>
Date: Wed, 15 Apr 2020 23:40:10 +0100
From: Colin King <colin.king@...onical.com>
To: Eduardo Valentin <edubezval@...il.com>, Keerthy <j-keerthy@...com>,
Zhang Rui <rui.zhang@...el.com>,
Daniel Lezcano <daniel.lezcano@...aro.org>,
Amit Kucheria <amit.kucheria@...durent.com>,
linux-pm@...r.kernel.org, linux-omap@...r.kernel.org
Cc: kernel-janitors@...r.kernel.org, linux-kernel@...r.kernel.org
Subject: [PATCH] thermal: ti-soc-thermal: remove redundant assignment to variable i
From: Colin Ian King <colin.king@...onical.com>
The variable i is being assigned with a value that is never read,
the assignment is redundant and can be removed.
Addresses-Coverity: ("Unused value")
Signed-off-by: Colin Ian King <colin.king@...onical.com>
---
drivers/thermal/ti-soc-thermal/ti-bandgap.c | 1 -
1 file changed, 1 deletion(-)
diff --git a/drivers/thermal/ti-soc-thermal/ti-bandgap.c b/drivers/thermal/ti-soc-thermal/ti-bandgap.c
index ab19ceff6e2a..abaf629038c3 100644
--- a/drivers/thermal/ti-soc-thermal/ti-bandgap.c
+++ b/drivers/thermal/ti-soc-thermal/ti-bandgap.c
@@ -1003,7 +1003,6 @@ int ti_bandgap_probe(struct platform_device *pdev)
ret = ti_bandgap_talert_init(bgp, pdev);
if (ret) {
dev_err(&pdev->dev, "failed to initialize Talert IRQ\n");
- i = bgp->conf->sensor_count;
goto disable_clk;
}
}
--
2.25.1
Powered by blists - more mailing lists