diff options
author | Gleb Natapov <gleb@redhat.com> | 2010-12-08 13:34:56 +0200 |
---|---|---|
committer | Blue Swirl <blauwirbel@gmail.com> | 2010-12-11 21:27:46 +0000 |
commit | dee41d58ef7b874fd8a07e9e0ae4ef6e7fe624fc (patch) | |
tree | bf50e58bad6dda3e9e334ebd57373b7bdc3b8d17 /hw/m48t59.c | |
parent | 21150814d9f0d40b77f8ec54e716505b85b87e6b (diff) |
Keep track of ISA ports ISA device is using in qdev.
Store all io ports used by device in ISADevice structure.
Signed-off-by: Gleb Natapov <gleb@redhat.com>
Signed-off-by: Blue Swirl <blauwirbel@gmail.com>
Diffstat (limited to 'hw/m48t59.c')
-rw-r--r-- | hw/m48t59.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/hw/m48t59.c b/hw/m48t59.c index 3c26b544f5..6991e2e8e1 100644 --- a/hw/m48t59.c +++ b/hw/m48t59.c @@ -680,6 +680,7 @@ M48t59State *m48t59_init_isa(uint32_t io_base, uint16_t size, int type) if (io_base != 0) { register_ioport_read(io_base, 0x04, 1, NVRAM_readb, s); register_ioport_write(io_base, 0x04, 1, NVRAM_writeb, s); + isa_init_ioport_range(dev, io_base, 4); } return s; |