diff options
author | Mark Brown <broonie@linaro.org> | 2013-09-01 13:49:11 +0100 |
---|---|---|
committer | Mark Brown <broonie@linaro.org> | 2013-09-01 13:49:11 +0100 |
commit | 368ce0bca434347b7cd5550ee71b046d7727830f (patch) | |
tree | 305a654fffb4cead724f182d0184cbb164275c08 /drivers/spi | |
parent | 874915ed4b88fd616e6aa635bea163a470e98219 (diff) | |
parent | 33bf2c0b7d5af73763f41fd10d18f4c1f574c7fb (diff) | |
download | op-kernel-dev-368ce0bca434347b7cd5550ee71b046d7727830f.zip op-kernel-dev-368ce0bca434347b7cd5550ee71b046d7727830f.tar.gz |
Merge remote-tracking branch 'spi/topic/sh-msiof' into spi-next
Diffstat (limited to 'drivers/spi')
-rw-r--r-- | drivers/spi/spi-sh-msiof.c | 18 |
1 files changed, 0 insertions, 18 deletions
diff --git a/drivers/spi/spi-sh-msiof.c b/drivers/spi/spi-sh-msiof.c index cbc7f22..2a95435 100644 --- a/drivers/spi/spi-sh-msiof.c +++ b/drivers/spi/spi-sh-msiof.c @@ -745,18 +745,6 @@ static int sh_msiof_spi_remove(struct platform_device *pdev) return ret; } -static int sh_msiof_spi_runtime_nop(struct device *dev) -{ - /* Runtime PM callback shared between ->runtime_suspend() - * and ->runtime_resume(). Simply returns success. - * - * This driver re-initializes all registers after - * pm_runtime_get_sync() anyway so there is no need - * to save and restore registers here. - */ - return 0; -} - #ifdef CONFIG_OF static const struct of_device_id sh_msiof_match[] = { { .compatible = "renesas,sh-msiof", }, @@ -766,18 +754,12 @@ static const struct of_device_id sh_msiof_match[] = { MODULE_DEVICE_TABLE(of, sh_msiof_match); #endif -static struct dev_pm_ops sh_msiof_spi_dev_pm_ops = { - .runtime_suspend = sh_msiof_spi_runtime_nop, - .runtime_resume = sh_msiof_spi_runtime_nop, -}; - static struct platform_driver sh_msiof_spi_drv = { .probe = sh_msiof_spi_probe, .remove = sh_msiof_spi_remove, .driver = { .name = "spi_sh_msiof", .owner = THIS_MODULE, - .pm = &sh_msiof_spi_dev_pm_ops, .of_match_table = of_match_ptr(sh_msiof_match), }, }; |