From afcea8cbdea8180b42093377b2c700d1b7f20b7c Mon Sep 17 00:00:00 2001 From: Blue Swirl Date: Sun, 20 Sep 2009 16:05:47 +0000 Subject: 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 --- ioport.c | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'ioport.c') diff --git a/ioport.c b/ioport.c index 5a4fe8d242..53dd87af33 100644 --- a/ioport.c +++ b/ioport.c @@ -192,25 +192,25 @@ void isa_unassign_ioport(pio_addr_t start, int length) /***********************************************************/ -void cpu_outb(CPUState *env, pio_addr_t addr, uint8_t val) +void cpu_outb(pio_addr_t addr, uint8_t val) { LOG_IOPORT("outb: %04"FMT_pioaddr" %02"PRIx8"\n", addr, val); ioport_write(0, addr, val); } -void cpu_outw(CPUState *env, pio_addr_t addr, uint16_t val) +void cpu_outw(pio_addr_t addr, uint16_t val) { LOG_IOPORT("outw: %04"FMT_pioaddr" %04"PRIx16"\n", addr, val); ioport_write(1, addr, val); } -void cpu_outl(CPUState *env, pio_addr_t addr, uint32_t val) +void cpu_outl(pio_addr_t addr, uint32_t val) { LOG_IOPORT("outl: %04"FMT_pioaddr" %08"PRIx32"\n", addr, val); ioport_write(2, addr, val); } -uint8_t cpu_inb(CPUState *env, pio_addr_t addr) +uint8_t cpu_inb(pio_addr_t addr) { uint8_t val; val = ioport_read(0, addr); @@ -218,7 +218,7 @@ uint8_t cpu_inb(CPUState *env, pio_addr_t addr) return val; } -uint16_t cpu_inw(CPUState *env, pio_addr_t addr) +uint16_t cpu_inw(pio_addr_t addr) { uint16_t val; val = ioport_read(1, addr); @@ -226,7 +226,7 @@ uint16_t cpu_inw(CPUState *env, pio_addr_t addr) return val; } -uint32_t cpu_inl(CPUState *env, pio_addr_t addr) +uint32_t cpu_inl(pio_addr_t addr) { uint32_t val; val = ioport_read(2, addr); -- cgit v1.2.1