diff options
author | Michael S. Tsirkin <mst@redhat.com> | 2011-06-14 17:29:34 +0300 |
---|---|---|
committer | Michael S. Tsirkin <mst@redhat.com> | 2011-06-16 00:20:12 +0300 |
commit | 0e6264db2c04dfad79be60240bfacfcaf47f9d6c (patch) | |
tree | dfafde7af006a28caf54050aa042654f76bca6c5 /hw/wdt_i6300esb.c | |
parent | efa6435159e4f8a12f8201fadf738f63a8a5132e (diff) |
wdt: remove unused variables
Signed-off-by: Michael S. Tsirkin <mst@redhat.com>
Acked-off-by: Isaku Yamahata <yamahata@valinux.co.jp>
Diffstat (limited to 'hw/wdt_i6300esb.c')
-rw-r--r-- | hw/wdt_i6300esb.c | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/hw/wdt_i6300esb.c b/hw/wdt_i6300esb.c index bd57fd3c12..53786ce8fa 100644 --- a/hw/wdt_i6300esb.c +++ b/hw/wdt_i6300esb.c @@ -381,7 +381,6 @@ static const VMStateDescription vmstate_i6300esb = { static int i6300esb_init(PCIDevice *dev) { I6300State *d = DO_UPCAST(I6300State, dev, dev); - uint8_t *pci_conf; int io_mem; static CPUReadMemoryFunc * const mem_read[3] = { i6300esb_mem_readb, @@ -399,8 +398,6 @@ static int i6300esb_init(PCIDevice *dev) d->timer = qemu_new_timer_ns(vm_clock, i6300esb_timer_expired, d); d->previous_reboot_flag = 0; - pci_conf = d->dev.config; - io_mem = cpu_register_io_memory(mem_read, mem_write, d, DEVICE_NATIVE_ENDIAN); pci_register_bar_simple(&d->dev, 0, 0x10, 0, io_mem); |