diff options
author | Amit Shah <amit.shah@redhat.com> | 2012-03-29 12:58:05 +0530 |
---|---|---|
committer | Amit Shah <amit.shah@redhat.com> | 2012-03-31 08:09:51 +0530 |
commit | f878d0be229ab129bc4b224191f217106a4b0bc1 (patch) | |
tree | 8cf8de049cc777be1e55a2d868289b45a1e8b9cf /drivers/virtio | |
parent | 04c2322bee841121cfdd7f284e1d4274e9e60e33 (diff) |
virtio-pci: switch to PM ops macro to initialise PM functions
Use the SET_SYSTEM_SLEEP_PM_OPS macro to initialise the suspend/resume
functions in the new PM API.
Signed-off-by: Amit Shah <amit.shah@redhat.com>
Diffstat (limited to 'drivers/virtio')
-rw-r--r-- | drivers/virtio/virtio_pci.c | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/drivers/virtio/virtio_pci.c b/drivers/virtio/virtio_pci.c index 0fa4f8551c3..2e03d416b9a 100644 --- a/drivers/virtio/virtio_pci.c +++ b/drivers/virtio/virtio_pci.c @@ -768,12 +768,7 @@ static int virtio_pci_restore(struct device *dev) } static const struct dev_pm_ops virtio_pci_pm_ops = { - .suspend = virtio_pci_freeze, - .resume = virtio_pci_restore, - .freeze = virtio_pci_freeze, - .thaw = virtio_pci_restore, - .restore = virtio_pci_restore, - .poweroff = virtio_pci_freeze, + SET_SYSTEM_SLEEP_PM_OPS(virtio_pci_freeze, virtio_pci_restore) }; #endif |