public inbox for linux-i2c@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH 1/3] i2c: lpc2k: Add check for clk_enable()
@ 2024-11-04 21:43 Jiasheng Jiang
  2024-11-04 21:43 ` [PATCH 2/3] i2c: pxa: Add check for clk_enable() and clk_prepare_enable() Jiasheng Jiang
  2024-11-04 21:43 ` [PATCH 3/3] i2c: rk3x: Add check for clk_enable() Jiasheng Jiang
  0 siblings, 2 replies; 5+ messages in thread
From: Jiasheng Jiang @ 2024-11-04 21:43 UTC (permalink / raw)
  To: rmk, max.schwarz, dianders, david.wu, heiko, vz, andi.shyti, wsa,
	manabian
  Cc: linux-arm-kernel, linux-rockchip, linux-i2c, linux-kernel,
	Jiasheng Jiang

Add check for the return value of clk_enable() in order to catch the
potential exception.

Fixes: 3f9c37a0c9a5 ("i2c: lpc2k: add driver")
Signed-off-by: Jiasheng Jiang <jiashengjiangcool@gmail.com>
---
 drivers/i2c/busses/i2c-lpc2k.c | 8 +++++++-
 1 file changed, 7 insertions(+), 1 deletion(-)

diff --git a/drivers/i2c/busses/i2c-lpc2k.c b/drivers/i2c/busses/i2c-lpc2k.c
index 9fb33cbf7419..ea9831f34cd6 100644
--- a/drivers/i2c/busses/i2c-lpc2k.c
+++ b/drivers/i2c/busses/i2c-lpc2k.c
@@ -442,8 +442,14 @@ static int i2c_lpc2k_suspend(struct device *dev)
 static int i2c_lpc2k_resume(struct device *dev)
 {
 	struct lpc2k_i2c *i2c = dev_get_drvdata(dev);
+	int ret;
+
+	ret = clk_enable(i2c->clk);
+	if (ret) {
+		dev_err(dev, "failed to enable clock: %d\n", ret);
+		return ret;
+	}
 
-	clk_enable(i2c->clk);
 	i2c_lpc2k_reset(i2c);
 
 	return 0;
-- 
2.25.1


^ permalink raw reply related	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2024-11-05 16:26 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-11-04 21:43 [PATCH 1/3] i2c: lpc2k: Add check for clk_enable() Jiasheng Jiang
2024-11-04 21:43 ` [PATCH 2/3] i2c: pxa: Add check for clk_enable() and clk_prepare_enable() Jiasheng Jiang
2024-11-05 14:13   ` Andi Shyti
2024-11-05 16:26     ` Jiasheng Jiang
2024-11-04 21:43 ` [PATCH 3/3] i2c: rk3x: Add check for clk_enable() Jiasheng Jiang

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox