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 /ioport-user.c | |
parent | 5e520a7d500ec2569d22d80f9ef4272a34cb3c80 (diff) |
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 'ioport-user.c')
-rw-r--r-- | ioport-user.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/ioport-user.c b/ioport-user.c index 11c76c7631..03fac22d22 100644 --- a/ioport-user.c +++ b/ioport-user.c @@ -23,37 +23,37 @@ #include "qemu-common.h" #include "ioport.h" -void cpu_outb(CPUState *env, pio_addr_t addr, uint8_t val) +void cpu_outb(pio_addr_t addr, uint8_t val) { fprintf(stderr, "outb: port=0x%04"FMT_pioaddr", data=%02"PRIx8"\n", addr, val); } -void cpu_outw(CPUState *env, pio_addr_t addr, uint16_t val) +void cpu_outw(pio_addr_t addr, uint16_t val) { fprintf(stderr, "outw: port=0x%04"FMT_pioaddr", data=%04"PRIx16"\n", addr, val); } -void cpu_outl(CPUState *env, pio_addr_t addr, uint32_t val) +void cpu_outl(pio_addr_t addr, uint32_t val) { fprintf(stderr, "outl: port=0x%04"FMT_pioaddr", data=%08"PRIx32"\n", addr, val); } -uint8_t cpu_inb(CPUState *env, pio_addr_t addr) +uint8_t cpu_inb(pio_addr_t addr) { fprintf(stderr, "inb: port=0x%04"FMT_pioaddr"\n", addr); return 0; } -uint16_t cpu_inw(CPUState *env, pio_addr_t addr) +uint16_t cpu_inw(pio_addr_t addr) { fprintf(stderr, "inw: port=0x%04"FMT_pioaddr"\n", addr); return 0; } -uint32_t cpu_inl(CPUState *env, pio_addr_t addr) +uint32_t cpu_inl(pio_addr_t addr) { fprintf(stderr, "inl: port=0x%04"FMT_pioaddr"\n", addr); return 0; |