linux-input.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH 1/2] Input: at32psif: handle clk_enable return value
@ 2015-09-11  3:02 WEN Pingbo
  2015-09-11  3:02 ` [PATCH 2/2] Input: lpc32xx: " WEN Pingbo
  2015-09-11  3:10 ` [PATCH 1/2] Input: at32psif: " Fabio Estevam
  0 siblings, 2 replies; 5+ messages in thread
From: WEN Pingbo @ 2015-09-11  3:02 UTC (permalink / raw)
  To: dmitry.torokhov; +Cc: broonie, linux-input, WEN Pingbo

We should print the err if clk_enable failed.

Signed-off-by: WEN Pingbo <pingbo.wen@linaro.org>
---
 drivers/input/serio/at32psif.c | 6 +++++-
 1 file changed, 5 insertions(+), 1 deletion(-)

diff --git a/drivers/input/serio/at32psif.c b/drivers/input/serio/at32psif.c
index 2e4ff5b..aebb996 100644
--- a/drivers/input/serio/at32psif.c
+++ b/drivers/input/serio/at32psif.c
@@ -185,6 +185,7 @@ static void psif_set_prescaler(struct psif *psif)
 {
 	unsigned long prscv;
 	unsigned long rate = clk_get_rate(psif->pclk);
+	int retval;
 
 	/* PRSCV = Pulse length (100 us) * PSIF module frequency. */
 	prscv = 100 * (rate / 1000000UL);
@@ -195,7 +196,10 @@ static void psif_set_prescaler(struct psif *psif)
 				"prescaler set to max\n");
 	}
 
-	clk_enable(psif->pclk);
+	retval = clk_enable(psif->pclk);
+	if (retval < 0)
+		dev_err(&psif->pdev->dev,
+			"could not enable pclk, ret %d\n", retval);
 	psif_writel(psif, PSR, prscv);
 	clk_disable(psif->pclk);
 }
-- 
1.9.1


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

end of thread, other threads:[~2015-09-11  3:35 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-09-11  3:02 [PATCH 1/2] Input: at32psif: handle clk_enable return value WEN Pingbo
2015-09-11  3:02 ` [PATCH 2/2] Input: lpc32xx: " WEN Pingbo
2015-09-11  3:10 ` [PATCH 1/2] Input: at32psif: " Fabio Estevam
2015-09-11  3:21   ` Pingbo Wen
2015-09-11  3:34   ` [PATCH V2 " WEN Pingbo

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).