diff options
author | Amit Shah <amit.shah@redhat.com> | 2012-03-29 12:50:20 +0530 |
---|---|---|
committer | Amit Shah <amit.shah@redhat.com> | 2012-03-31 08:09:50 +0530 |
commit | f38f8387cbdc4138a492ce9f2a5f04fd3cd3cf33 (patch) | |
tree | 037dfe639de15cbf6be59182872531a23cc20398 /include | |
parent | e47d854e57698d3be4579d2118f6057f9f12a17c (diff) | |
download | linux-stable-f38f8387cbdc4138a492ce9f2a5f04fd3cd3cf33.tar.gz linux-stable-f38f8387cbdc4138a492ce9f2a5f04fd3cd3cf33.tar.bz2 linux-stable-f38f8387cbdc4138a492ce9f2a5f04fd3cd3cf33.zip |
virtio: drop thaw PM operation
The thaw operation was used by the balloon driver, but after the last
commit there's no reason to have separate thaw and restore callbacks.
Signed-off-by: Amit Shah <amit.shah@redhat.com>
Diffstat (limited to 'include')
-rw-r--r-- | include/linux/virtio.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/include/linux/virtio.h b/include/linux/virtio.h index d0018d27c281..8efd28ae5597 100644 --- a/include/linux/virtio.h +++ b/include/linux/virtio.h @@ -96,7 +96,6 @@ struct virtio_driver { void (*config_changed)(struct virtio_device *dev); #ifdef CONFIG_PM int (*freeze)(struct virtio_device *dev); - int (*thaw)(struct virtio_device *dev); int (*restore)(struct virtio_device *dev); #endif }; |