Re: [PATCH] mtd: s3c2410: Move to clk_prepare_enable/clk_disable_unprepare

2014-07-02 Thread Brian Norris
On Mon, Jun 30, 2014 at 10:12:16PM +0300, Vasily Khoruzhick wrote:
 Use clk_prepare_enable/clk_disable_unprepare to make the driver
 work properly with common clock framework.
 
 Signed-off-by: Vasily Khoruzhick anars...@gmail.com

Pushed to l2-mtd.git. Thanks!

Brian
--
To unsubscribe from this list: send the line unsubscribe linux-samsung-soc in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html


[PATCH] mtd: s3c2410: Move to clk_prepare_enable/clk_disable_unprepare

2014-06-30 Thread Vasily Khoruzhick
Use clk_prepare_enable/clk_disable_unprepare to make the driver
work properly with common clock framework.

Signed-off-by: Vasily Khoruzhick anars...@gmail.com
---
 drivers/mtd/nand/s3c2410.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/drivers/mtd/nand/s3c2410.c b/drivers/mtd/nand/s3c2410.c
index 79acbb8..6b97bf1 100644
--- a/drivers/mtd/nand/s3c2410.c
+++ b/drivers/mtd/nand/s3c2410.c
@@ -208,10 +208,10 @@ static void s3c2410_nand_clk_set_state(struct 
s3c2410_nand_info *info,
 
if (info-clk_state == CLOCK_ENABLE) {
if (new_state != CLOCK_ENABLE)
-   clk_disable(info-clk);
+   clk_disable_unprepare(info-clk);
} else {
if (new_state == CLOCK_ENABLE)
-   clk_enable(info-clk);
+   clk_prepare_enable(info-clk);
}
 
info-clk_state = new_state;
-- 
2.0.0

--
To unsubscribe from this list: send the line unsubscribe linux-samsung-soc in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html