diff options
author | Cai Huoqing <caihuoqing@baidu.com> | 2021-08-28 17:00:11 +0800 |
---|---|---|
committer | Dominik Brodowski <linux@dominikbrodowski.net> | 2022-01-02 18:36:54 +0100 |
commit | 3daaf2c7aae8f16845a59b57d3ae92e3d0965d21 (patch) | |
tree | 7fe32bdc2324421bc51943b42d288402a6b05a2f /drivers/pcmcia | |
parent | 93e4d69400fdfd721616200fe27809ce139fd734 (diff) | |
download | linux-stable-3daaf2c7aae8f16845a59b57d3ae92e3d0965d21.tar.gz linux-stable-3daaf2c7aae8f16845a59b57d3ae92e3d0965d21.tar.bz2 linux-stable-3daaf2c7aae8f16845a59b57d3ae92e3d0965d21.zip |
pcmcia: Make use of the helper macro SET_NOIRQ_SYSTEM_SLEEP_PM_OPS()
Use the helper macro SET_NOIRQ_SYSTEM_SLEEP_PM_OPS() instead of
the verbose operators ".suspend_noirq /.resume_noirq/.freeze_noirq/
.thaw_noirq/.poweroff_noirq/.restore_noirq", because the
SET_NOIRQ_SYSTEM_SLEEP_PM_OPS() is a nice helper macro that could
be brought in to make code a little clearer, a little more concise.
Signed-off-by: Cai Huoqing <caihuoqing@baidu.com>
Signed-off-by: Dominik Brodowski <linux@dominikbrodowski.net>
Diffstat (limited to 'drivers/pcmcia')
-rw-r--r-- | drivers/pcmcia/yenta_socket.c | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/drivers/pcmcia/yenta_socket.c b/drivers/pcmcia/yenta_socket.c index 84bfc0e85d6b..e472da29d401 100644 --- a/drivers/pcmcia/yenta_socket.c +++ b/drivers/pcmcia/yenta_socket.c @@ -1342,12 +1342,7 @@ static int yenta_dev_resume_noirq(struct device *dev) } static const struct dev_pm_ops yenta_pm_ops = { - .suspend_noirq = yenta_dev_suspend_noirq, - .resume_noirq = yenta_dev_resume_noirq, - .freeze_noirq = yenta_dev_suspend_noirq, - .thaw_noirq = yenta_dev_resume_noirq, - .poweroff_noirq = yenta_dev_suspend_noirq, - .restore_noirq = yenta_dev_resume_noirq, + SET_NOIRQ_SYSTEM_SLEEP_PM_OPS(yenta_dev_suspend_noirq, yenta_dev_resume_noirq) }; #define YENTA_PM_OPS (¥ta_pm_ops) |