Skip to content

Commit

Permalink
ac97: register reset via qom
Browse files Browse the repository at this point in the history
So it gets properly unregistered on hot-unplug.

Signed-off-by: Gerd Hoffmann <[email protected]>
  • Loading branch information
kraxel committed Sep 29, 2014
1 parent 81ab11a commit 1337714
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions hw/audio/ac97.c
Original file line number Diff line number Diff line change
Expand Up @@ -1321,9 +1321,9 @@ static const MemoryRegionOps ac97_io_nabm_ops = {
.endianness = DEVICE_LITTLE_ENDIAN,
};

static void ac97_on_reset (void *opaque)
static void ac97_on_reset (DeviceState *dev)
{
AC97LinkState *s = opaque;
AC97LinkState *s = container_of(dev, AC97LinkState, dev.qdev);

reset_bm_regs (s, &s->bm_regs[0]);
reset_bm_regs (s, &s->bm_regs[1]);
Expand Down Expand Up @@ -1382,9 +1382,8 @@ static int ac97_initfn (PCIDevice *dev)
"ac97-nabm", 256);
pci_register_bar (&s->dev, 0, PCI_BASE_ADDRESS_SPACE_IO, &s->io_nam);
pci_register_bar (&s->dev, 1, PCI_BASE_ADDRESS_SPACE_IO, &s->io_nabm);
qemu_register_reset (ac97_on_reset, s);
AUD_register_card ("ac97", &s->card);
ac97_on_reset (s);
ac97_on_reset (&s->dev.qdev);
return 0;
}

Expand Down Expand Up @@ -1413,6 +1412,7 @@ static void ac97_class_init (ObjectClass *klass, void *data)
dc->desc = "Intel 82801AA AC97 Audio";
dc->vmsd = &vmstate_ac97;
dc->props = ac97_properties;
dc->reset = ac97_on_reset;
}

static const TypeInfo ac97_info = {
Expand Down

0 comments on commit 1337714

Please sign in to comment.