diff options
author | Paolo Bonzini <pbonzini@redhat.com> | 2015-02-23 11:17:52 -0500 |
---|---|---|
committer | Kevin Wolf <kwolf@redhat.com> | 2015-03-10 14:02:22 +0100 |
commit | f878c916077d510be3276dad7c36f606cdcea80a (patch) | |
tree | c98666cdab1864856ce4a29674dc29637e685b26 /hw/ide/internal.h | |
parent | bd8892c4e6d681517c687ec5ac86eed46b3bb23b (diff) | |
download | qemu-f878c916077d510be3276dad7c36f606cdcea80a.zip qemu-f878c916077d510be3276dad7c36f606cdcea80a.tar.gz qemu-f878c916077d510be3276dad7c36f606cdcea80a.tar.bz2 |
ide: introduce ide_register_restart_cb
A helper is added that registers the IDEDMAOp .restart_cb()
via qemu_add_vm_change_state_handler instead of requiring
each HBA to register the callback themselves.
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
Signed-off-by: John Snow <jsnow@redhat.com>
Message-id: 1424708286-16483-4-git-send-email-jsnow@redhat.com
Signed-off-by: Stefan Hajnoczi <stefanha@redhat.com>
Signed-off-by: Kevin Wolf <kwolf@redhat.com>
Diffstat (limited to 'hw/ide/internal.h')
-rw-r--r-- | hw/ide/internal.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/hw/ide/internal.h b/hw/ide/internal.h index 2566503..57ef5ca 100644 --- a/hw/ide/internal.h +++ b/hw/ide/internal.h @@ -551,6 +551,7 @@ int ide_init_drive(IDEState *s, BlockBackend *blk, IDEDriveKind kind, int chs_trans); void ide_init2(IDEBus *bus, qemu_irq irq); void ide_init_ioport(IDEBus *bus, ISADevice *isa, int iobase, int iobase2); +void ide_register_restart_cb(IDEBus *bus); void ide_exec_cmd(IDEBus *bus, uint32_t val); void ide_dma_cb(void *opaque, int ret); |