mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-04 08:13:54 -06:00
Revert "Get rid of _t suffix"
In the very least, a change like this requires discussion on the list.
The naming convention is goofy and it causes a massive merge problem. Something
like this _must_ be presented on the list first so people can provide input
and cope with it.
This reverts commit 99a0949b72
.
Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
This commit is contained in:
parent
99a0949b72
commit
c227f0995e
316 changed files with 3332 additions and 3325 deletions
18
ioport.c
18
ioport.c
|
@ -136,7 +136,7 @@ static int ioport_bsize(int size, int *bsize)
|
|||
}
|
||||
|
||||
/* size is the word size in byte */
|
||||
int register_ioport_read(a_pio_addr start, int length, int size,
|
||||
int register_ioport_read(pio_addr_t start, int length, int size,
|
||||
IOPortReadFunc *func, void *opaque)
|
||||
{
|
||||
int i, bsize;
|
||||
|
@ -155,7 +155,7 @@ int register_ioport_read(a_pio_addr start, int length, int size,
|
|||
}
|
||||
|
||||
/* size is the word size in byte */
|
||||
int register_ioport_write(a_pio_addr start, int length, int size,
|
||||
int register_ioport_write(pio_addr_t start, int length, int size,
|
||||
IOPortWriteFunc *func, void *opaque)
|
||||
{
|
||||
int i, bsize;
|
||||
|
@ -173,7 +173,7 @@ int register_ioport_write(a_pio_addr start, int length, int size,
|
|||
return 0;
|
||||
}
|
||||
|
||||
void isa_unassign_ioport(a_pio_addr start, int length)
|
||||
void isa_unassign_ioport(pio_addr_t start, int length)
|
||||
{
|
||||
int i;
|
||||
|
||||
|
@ -192,25 +192,25 @@ void isa_unassign_ioport(a_pio_addr start, int length)
|
|||
|
||||
/***********************************************************/
|
||||
|
||||
void cpu_outb(a_pio_addr 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(a_pio_addr 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(a_pio_addr 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(a_pio_addr 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(a_pio_addr addr)
|
|||
return val;
|
||||
}
|
||||
|
||||
uint16_t cpu_inw(a_pio_addr 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(a_pio_addr addr)
|
|||
return val;
|
||||
}
|
||||
|
||||
uint32_t cpu_inl(a_pio_addr addr)
|
||||
uint32_t cpu_inl(pio_addr_t addr)
|
||||
{
|
||||
uint32_t val;
|
||||
val = ioport_read(2, addr);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue