aboutsummaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorDr. David Alan Gilbert <dgilbert@redhat.com>2019-08-22 12:54:33 +0100
committerDr. David Alan Gilbert <dgilbert@redhat.com>2019-09-12 11:15:03 +0100
commitce62df5378bd66963b3e096b86b31f342f001cfe (patch)
tree651c7457f213ee9215b601e2347bfe7dcef0725c /docs
parentfd418e520eca16e3b148633ed23ec20b14db9b0c (diff)
downloadqemu-ce62df5378bd66963b3e096b86b31f342f001cfe.zip
qemu-ce62df5378bd66963b3e096b86b31f342f001cfe.tar.gz
qemu-ce62df5378bd66963b3e096b86b31f342f001cfe.tar.bz2
migration: register_savevm_live doesn't need dev
Commit 78dd48df3 removed the last caller of register_savevm_live for an instantiable device (rather than a single system wide device); so trim out the parameter. Signed-off-by: Dr. David Alan Gilbert <dgilbert@redhat.com> Message-Id: <20190822115433.12070-1-dgilbert@redhat.com> Reviewed-by: Stefan Hajnoczi <stefanha@redhat.com> Reviewed-by: Cornelia Huck <cohuck@redhat.com> Signed-off-by: Dr. David Alan Gilbert <dgilbert@redhat.com>
Diffstat (limited to 'docs')
-rw-r--r--docs/devel/migration.rst3
1 files changed, 1 insertions, 2 deletions
diff --git a/docs/devel/migration.rst b/docs/devel/migration.rst
index f7668ae..e88918f 100644
--- a/docs/devel/migration.rst
+++ b/docs/devel/migration.rst
@@ -183,8 +183,7 @@ another to load the state back.
.. code:: c
- int register_savevm_live(DeviceState *dev,
- const char *idstr,
+ int register_savevm_live(const char *idstr,
int instance_id,
int version_id,
SaveVMHandlers *ops,