diff options
Diffstat (limited to 'hw/ac97.c')
| -rw-r--r-- | hw/ac97.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/hw/ac97.c b/hw/ac97.c index e791b9d3e6..0f561fa5c1 100644 --- a/hw/ac97.c +++ b/hw/ac97.c @@ -1319,13 +1319,12 @@ static int ac97_initfn (PCIDevice *dev) return 0; } -static int ac97_exitfn (PCIDevice *dev) +static void ac97_exitfn (PCIDevice *dev) { AC97LinkState *s = DO_UPCAST (AC97LinkState, dev, dev); memory_region_destroy (&s->io_nam); memory_region_destroy (&s->io_nabm); - return 0; } int ac97_init (PCIBus *bus) |