All of lore.kernel.org
 help / color / mirror / Atom feed
From: Philipp Zabel <pzabel@gmx.de>
To: linux-input@vger.kernel.org
Cc: Dmitry Torokhov <dmitry.torokhov@gmail.com>,
	Paul Parsons <lost.distance@yahoo.com>
Subject: [PATCH] Input: navpoint: add clk_prepare/clk_unprepare calls
Date: Thu, 15 Mar 2012 19:09:38 +0100	[thread overview]
Message-ID: <1331834978.14662.1.camel@flow> (raw)

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



             reply	other threads:[~2012-03-15 18:09 UTC|newest]

Thread overview: 2+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2012-03-15 18:09 Philipp Zabel [this message]
2012-03-16 15:57 ` [PATCH] Input: navpoint: add clk_prepare/clk_unprepare calls Paul Parsons

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=1331834978.14662.1.camel@flow \
    --to=pzabel@gmx.de \
    --cc=dmitry.torokhov@gmail.com \
    --cc=linux-input@vger.kernel.org \
    --cc=lost.distance@yahoo.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
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.