Skip to content

Commit

Permalink
Merge remote-tracking branch 'spi/topic/s3c64xx' into spi-next
Browse files Browse the repository at this point in the history
  • Loading branch information
Mark Brown committed Oct 25, 2013
2 parents d448121 + 9d7fd21 commit 84b6146
Showing 1 changed file with 12 additions and 10 deletions.
22 changes: 12 additions & 10 deletions drivers/spi/spi-s3c64xx.c
Original file line number Diff line number Diff line change
Expand Up @@ -1459,11 +1459,14 @@ static int s3c64xx_spi_suspend(struct device *dev)
struct spi_master *master = dev_get_drvdata(dev);
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 */
clk_disable_unprepare(sdd->src_clk);
clk_disable_unprepare(sdd->clk);
if (!pm_runtime_suspended(dev)) {
clk_disable_unprepare(sdd->clk);
clk_disable_unprepare(sdd->src_clk);
}

sdd->cur_speed = 0; /* Output Clock is stopped */

Expand All @@ -1479,15 +1482,14 @@ static int s3c64xx_spi_resume(struct device *dev)
if (sci->cfg_gpio)
sci->cfg_gpio();

/* Enable the clock */
clk_prepare_enable(sdd->src_clk);
clk_prepare_enable(sdd->clk);
if (!pm_runtime_suspended(dev)) {
clk_prepare_enable(sdd->src_clk);
clk_prepare_enable(sdd->clk);
}

s3c64xx_spi_hwinit(sdd, sdd->port_id);

spi_master_resume(master);

return 0;
return spi_master_resume(master);
}
#endif /* CONFIG_PM_SLEEP */

Expand Down

0 comments on commit 84b6146

Please sign in to comment.