Commit 84b61465 authored by Mark Brown's avatar Mark Brown

Merge remote-tracking branch 'spi/topic/s3c64xx' into spi-next

parents d448121c 9d7fd21a
...@@ -1459,11 +1459,14 @@ static int s3c64xx_spi_suspend(struct device *dev) ...@@ -1459,11 +1459,14 @@ static int s3c64xx_spi_suspend(struct device *dev)
struct spi_master *master = dev_get_drvdata(dev); struct spi_master *master = dev_get_drvdata(dev);
struct s3c64xx_spi_driver_data *sdd = spi_master_get_devdata(master); struct s3c64xx_spi_driver_data *sdd = spi_master_get_devdata(master);
spi_master_suspend(master); int ret = spi_master_suspend(master);
if (ret)
return ret;
/* Disable the clock */ if (!pm_runtime_suspended(dev)) {
clk_disable_unprepare(sdd->src_clk); clk_disable_unprepare(sdd->clk);
clk_disable_unprepare(sdd->clk); clk_disable_unprepare(sdd->src_clk);
}
sdd->cur_speed = 0; /* Output Clock is stopped */ sdd->cur_speed = 0; /* Output Clock is stopped */
...@@ -1479,15 +1482,14 @@ static int s3c64xx_spi_resume(struct device *dev) ...@@ -1479,15 +1482,14 @@ static int s3c64xx_spi_resume(struct device *dev)
if (sci->cfg_gpio) if (sci->cfg_gpio)
sci->cfg_gpio(); sci->cfg_gpio();
/* Enable the clock */ if (!pm_runtime_suspended(dev)) {
clk_prepare_enable(sdd->src_clk); clk_prepare_enable(sdd->src_clk);
clk_prepare_enable(sdd->clk); clk_prepare_enable(sdd->clk);
}
s3c64xx_spi_hwinit(sdd, sdd->port_id); s3c64xx_spi_hwinit(sdd, sdd->port_id);
spi_master_resume(master); return spi_master_resume(master);
return 0;
} }
#endif /* CONFIG_PM_SLEEP */ #endif /* CONFIG_PM_SLEEP */
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment