diff options
author | Jingoo Han <jg1.han@samsung.com> | 2014-02-25 20:32:48 -0500 |
---|---|---|
committer | Mark Brown <broonie@linaro.org> | 2014-02-26 23:40:59 -0500 |
commit | 71aa2e3207ad3249b4a7ceff7ca775a08341fdcb (patch) | |
tree | b7b79357da1f9df3fb560289e55233a4f2b3418d /drivers/spi | |
parent | facffed29709313593e6feab3a08d9664874e977 (diff) |
spi: sirf: Use SIMPLE_DEV_PM_OPS macro
Use SIMPLE_DEV_PM_OPS macro in order to make the code simpler.
Signed-off-by: Jingoo Han <jg1.han@samsung.com>
Acked-by: Barry Song <Baohua.Song@csr.com>
Signed-off-by: Mark Brown <broonie@linaro.org>
Diffstat (limited to 'drivers/spi')
-rw-r--r-- | drivers/spi/spi-sirf.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/drivers/spi/spi-sirf.c b/drivers/spi/spi-sirf.c index 5210b94729aa..dc962a17f373 100644 --- a/drivers/spi/spi-sirf.c +++ b/drivers/spi/spi-sirf.c | |||
@@ -718,9 +718,8 @@ static int spi_sirfsoc_resume(struct device *dev) | |||
718 | } | 718 | } |
719 | #endif | 719 | #endif |
720 | 720 | ||
721 | static const struct dev_pm_ops spi_sirfsoc_pm_ops = { | 721 | static SIMPLE_DEV_PM_OPS(spi_sirfsoc_pm_ops, spi_sirfsoc_suspend, |
722 | SET_SYSTEM_SLEEP_PM_OPS(spi_sirfsoc_suspend, spi_sirfsoc_resume) | 722 | spi_sirfsoc_resume); |
723 | }; | ||
724 | 723 | ||
725 | static const struct of_device_id spi_sirfsoc_of_match[] = { | 724 | static const struct of_device_id spi_sirfsoc_of_match[] = { |
726 | { .compatible = "sirf,prima2-spi", }, | 725 | { .compatible = "sirf,prima2-spi", }, |