All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] Input: navpoint: add clk_prepare/clk_unprepare calls
@ 2012-03-15 18:09 Philipp Zabel
  2012-03-16 15:57 ` Paul Parsons
  0 siblings, 1 reply; 2+ messages in thread
From: Philipp Zabel @ 2012-03-15 18:09 UTC (permalink / raw)
  To: linux-input; +Cc: Dmitry Torokhov, Paul Parsons

This patch adds clk_prepare/clk_unprepare calls to the navpoint
driver by using the helper functions clk_prepare_enable and
clk_disable_unprepare.

Signed-off-by: Philipp Zabel <philipp.zabel@gmail.com>
Cc: Dmitry Torokhov <dmitry.torokhov@gmail.com>
Cc: Paul Parsons <lost.distance@yahoo.com>
---
 drivers/input/mouse/navpoint.c |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/drivers/input/mouse/navpoint.c b/drivers/input/mouse/navpoint.c
index 253ec18..cb0d3b1 100644
--- a/drivers/input/mouse/navpoint.c
+++ b/drivers/input/mouse/navpoint.c
@@ -225,7 +225,7 @@ static int navpoint_suspend(struct device *dev)
 
 	pxa_ssp_write_reg(ssp, SSCR0, 0);
 
-	clk_disable(ssp->clk);
+	clk_disable_unprepare(ssp->clk);
 
 	return 0;
 }
@@ -236,7 +236,7 @@ static int navpoint_resume(struct device *dev)
 	struct ssp_device *ssp = drv_data->ssp;
 	int timeout;
 
-	clk_enable(ssp->clk);
+	clk_prepare_enable(ssp->clk);
 
 	pxa_ssp_write_reg(ssp, SSCR1, sscr1);
 	pxa_ssp_write_reg(ssp, SSSR, sssr);
-- 
1.7.9.1



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

end of thread, other threads:[~2012-03-16 16:03 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-03-15 18:09 [PATCH] Input: navpoint: add clk_prepare/clk_unprepare calls Philipp Zabel
2012-03-16 15:57 ` Paul Parsons

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.