aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorths <ths@c046a42c-6fe2-441c-8c8c-71466251a162>2008-07-18 18:02:34 +0000
committerths <ths@c046a42c-6fe2-441c-8c8c-71466251a162>2008-07-18 18:02:34 +0000
commit18fdb1c5c614ebdf9c3ea9ef0a548bd81cc1f981 (patch)
treee90fedcd280d57196fc2def055906546b46d28cc /hw/rtl8139.c
parentSmall cleanup of gen_intermediate_code(_internal), by Laurent Desnogues. (diff)
downloadqemu-kvm-18fdb1c5c614ebdf9c3ea9ef0a548bd81cc1f981.tar.gz
qemu-kvm-18fdb1c5c614ebdf9c3ea9ef0a548bd81cc1f981.tar.bz2
qemu-kvm-18fdb1c5c614ebdf9c3ea9ef0a548bd81cc1f981.zip
Various NICs: Fix suspend/resume of multiple instances, by Jan Kiszka.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@4892 c046a42c-6fe2-441c-8c8c-71466251a162
Diffstat (limited to 'hw/rtl8139.c')
-rw-r--r--hw/rtl8139.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/hw/rtl8139.c b/hw/rtl8139.c
index a7ab7047a..0222d421e 100644
--- a/hw/rtl8139.c
+++ b/hw/rtl8139.c
@@ -3454,8 +3454,7 @@ void pci_rtl8139_init(PCIBus *bus, NICInfo *nd, int devfn)
s->cplus_txbuffer_len = 0;
s->cplus_txbuffer_offset = 0;
- /* XXX: instance number ? */
- register_savevm("rtl8139", 0, 3, rtl8139_save, rtl8139_load, s);
+ register_savevm("rtl8139", -1, 3, rtl8139_save, rtl8139_load, s);
#if RTL8139_ONBOARD_TIMER
s->timer = qemu_new_timer(vm_clock, rtl8139_timer, s);