diff options
author | Vasily Khoruzhick <anarsoul@gmail.com> | 2014-06-30 15:12:16 -0400 |
---|---|---|
committer | Brian Norris <computersforpeace@gmail.com> | 2014-07-02 18:19:22 -0400 |
commit | 887957b4af65df55ed90a707fa7dfa3ebf37f50c (patch) | |
tree | 1001b2419609171f13ee1e2069615f0221c7f676 | |
parent | 29f63f65cc327d87e7ced987d9e4c58b1ede9bf7 (diff) |
mtd: s3c2410: Move to clk_prepare_enable/clk_disable_unprepare
Use clk_prepare_enable/clk_disable_unprepare to make the driver
work properly with common clock framework.
Signed-off-by: Vasily Khoruzhick <anarsoul@gmail.com>
Signed-off-by: Brian Norris <computersforpeace@gmail.com>
-rw-r--r-- | drivers/mtd/nand/s3c2410.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/mtd/nand/s3c2410.c b/drivers/mtd/nand/s3c2410.c index 79acbb8691b5..6b97bf17ce5d 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, | |||
208 | 208 | ||
209 | if (info->clk_state == CLOCK_ENABLE) { | 209 | if (info->clk_state == CLOCK_ENABLE) { |
210 | if (new_state != CLOCK_ENABLE) | 210 | if (new_state != CLOCK_ENABLE) |
211 | clk_disable(info->clk); | 211 | clk_disable_unprepare(info->clk); |
212 | } else { | 212 | } else { |
213 | if (new_state == CLOCK_ENABLE) | 213 | if (new_state == CLOCK_ENABLE) |
214 | clk_enable(info->clk); | 214 | clk_prepare_enable(info->clk); |
215 | } | 215 | } |
216 | 216 | ||
217 | info->clk_state = new_state; | 217 | info->clk_state = new_state; |