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.h | |
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.h')
-rw-r--r-- | ioport.h | 16 |
1 files changed, 6 insertions, 10 deletions
@@ -43,15 +43,11 @@ int register_ioport_write(pio_addr_t start, int length, int size, void isa_unassign_ioport(pio_addr_t start, int length); -/* NOTE: as these functions may be even used when there is an isa - brige on non x86 targets, we always defined them */ -#if !defined(NO_CPU_IO_DEFS) && defined(NEED_CPU_H) -void cpu_outb(CPUState *env, pio_addr_t addr, uint8_t val); -void cpu_outw(CPUState *env, pio_addr_t addr, uint16_t val); -void cpu_outl(CPUState *env, pio_addr_t addr, uint32_t val); -uint8_t cpu_inb(CPUState *env, pio_addr_t addr); -uint16_t cpu_inw(CPUState *env, pio_addr_t addr); -uint32_t cpu_inl(CPUState *env, pio_addr_t addr); -#endif +void cpu_outb(pio_addr_t addr, uint8_t val); +void cpu_outw(pio_addr_t addr, uint16_t val); +void cpu_outl(pio_addr_t addr, uint32_t val); +uint8_t cpu_inb(pio_addr_t addr); +uint16_t cpu_inw(pio_addr_t addr); +uint32_t cpu_inl(pio_addr_t addr); #endif /* IOPORT_H */ |