diff options
author | Michael S. Tsirkin | 2012-07-29 16:03:19 +0200 |
---|---|---|
committer | Michael S. Tsirkin | 2012-07-29 16:05:35 +0200 |
commit | 5e59b024351f827f903f98ae522687ea53dc4f23 (patch) | |
tree | 4996f31e1d7d9e08c04d8bbf018752a71c6cd4c3 /hw/wdt_i6300esb.c | |
parent | x86: Fixed incorrect segment base address addition in 64-bits mode (diff) | |
parent | msi/msix: added API to set MSI message address and data (diff) | |
download | qemu-5e59b024351f827f903f98ae522687ea53dc4f23.tar.gz qemu-5e59b024351f827f903f98ae522687ea53dc4f23.tar.xz qemu-5e59b024351f827f903f98ae522687ea53dc4f23.zip |
Merge branch pci into master
Merge master and pci branch, resolve build breakage in hw/esp.c
introduced by f90c2bcd.
Conflicts:
hw/esp.c
Diffstat (limited to 'hw/wdt_i6300esb.c')
-rw-r--r-- | hw/wdt_i6300esb.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/hw/wdt_i6300esb.c b/hw/wdt_i6300esb.c index 15c69db932..4a83474906 100644 --- a/hw/wdt_i6300esb.c +++ b/hw/wdt_i6300esb.c @@ -411,13 +411,11 @@ static int i6300esb_init(PCIDevice *dev) return 0; } -static int i6300esb_exit(PCIDevice *dev) +static void i6300esb_exit(PCIDevice *dev) { I6300State *d = DO_UPCAST(I6300State, dev, dev); memory_region_destroy(&d->io_mem); - - return 0; } static WatchdogTimerModel model = { |