[COMMON] i2c: exynos5: removed clk_unprepare during suspend
authorJung-Ick Guack <ji.guack@samsung.com>
Fri, 1 Jul 2016 07:40:50 +0000 (16:40 +0900)
committermyung-su.cha <myung-su.cha@samsung.com>
Wed, 9 May 2018 12:14:45 +0000 (21:14 +0900)
commitb938856dd994ad8e30c01b83e7181ca4fa0663b1
tree497832374e391e2762a706ada502050d102a6c6b
parentcee042d241f12b00f86d6f4c989a45be1bc3d744
[COMMON] i2c: exynos5: removed clk_unprepare during suspend

Fixed warning case during suspend.
There is the case that is calling clk_unprepare
even not called clk_disable during suspend_noirq.

flow of warning case:
exynos5_i2c_runtime_resume    (clk_enable)
-> exynos5_i2c_suspend_noirq  (clk_unprepare)
-> exynos5_i2c_runtime_suspend(clk_disable)

Change-Id: I482c924a2440caa5407e4b6682b1f4fc10648dc5
Signed-off-by: Jung-Ick Guack <ji.guack@samsung.com>
drivers/i2c/busses/i2c-exynos5.c