diff options
author | Blue Swirl <blauwirbel@gmail.com> | 2009-09-20 16:05:47 +0000 |
---|---|---|
committer | Blue Swirl <blauwirbel@gmail.com> | 2009-09-20 16:05:47 +0000 |
commit | afcea8cbdea8180b42093377b2c700d1b7f20b7c (patch) | |
tree | c638b6c2a483794e5fdb9a520c31337d6178acad /hw/mips_jazz.c | |
parent | 5e520a7d500ec2569d22d80f9ef4272a34cb3c80 (diff) | |
download | qemu-afcea8cbdea8180b42093377b2c700d1b7f20b7c.zip |
ioports: remove unused env parameter and compile only once
The CPU state parameter is not used, remove it and adjust callers. Now we
can compile ioport.c once for all targets.
Signed-off-by: Blue Swirl <blauwirbel@gmail.com>
Diffstat (limited to 'hw/mips_jazz.c')
-rw-r--r-- | hw/mips_jazz.c | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/hw/mips_jazz.c b/hw/mips_jazz.c index 1a499fa397..2a70b8bec6 100644 --- a/hw/mips_jazz.c +++ b/hw/mips_jazz.c @@ -49,14 +49,12 @@ static void main_cpu_reset(void *opaque) static uint32_t rtc_readb(void *opaque, target_phys_addr_t addr) { - CPUState *env = opaque; - return cpu_inw(env, 0x71); + return cpu_inw(0x71); } static void rtc_writeb(void *opaque, target_phys_addr_t addr, uint32_t val) { - CPUState *env = opaque; - cpu_outw(env, 0x71, val & 0xff); + cpu_outw(0x71, val & 0xff); } static CPUReadMemoryFunc * const rtc_read[3] = { @@ -243,7 +241,7 @@ void mips_jazz_init (ram_addr_t ram_size, /* Real time clock */ rtc_init(1980); - s_rtc = cpu_register_io_memory(rtc_read, rtc_write, env); + s_rtc = cpu_register_io_memory(rtc_read, rtc_write, NULL); cpu_register_physical_memory(0x80004000, 0x00001000, s_rtc); /* Keyboard (i8042) */ |