浏览代码

i2c: pnx: Disable clk in suspend

In the driver's suspend function, clk_enable() was used instead of
clk_disable(). This is corrected with this patch.

Signed-off-by: Roland Stigge <stigge@antcom.de>
Reviewed-by: Arnd Bergmann <arnd@arndb.de>
Signed-off-by: Wolfram Sang <w.sang@pengutronix.de>
CC: stable@vger.kernel.org
Roland Stigge 13 年之前
父节点
当前提交
c4cea7fc1b
共有 1 个文件被更改,包括 1 次插入2 次删除
  1. 1 2
      drivers/i2c/busses/i2c-pnx.c

+ 1 - 2
drivers/i2c/busses/i2c-pnx.c

@@ -546,8 +546,7 @@ static int i2c_pnx_controller_suspend(struct platform_device *pdev,
 {
 	struct i2c_pnx_algo_data *alg_data = platform_get_drvdata(pdev);
 
-	/* FIXME: shouldn't this be clk_disable? */
-	clk_enable(alg_data->clk);
+	clk_disable(alg_data->clk);
 
 	return 0;
 }