mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-04 16:23:55 -06:00
Get rid of _t suffix
Some not so obvious bits, slirp and Xen were left alone for the time being. Signed-off-by: malc <av1474@comtv.ru>
This commit is contained in:
parent
bc6291a1b9
commit
99a0949b72
316 changed files with 3325 additions and 3332 deletions
|
@ -338,14 +338,14 @@ static void sh_serial_event(void *opaque, int event)
|
|||
sh_serial_receive_break(s);
|
||||
}
|
||||
|
||||
static uint32_t sh_serial_read (void *opaque, target_phys_addr_t addr)
|
||||
static uint32_t sh_serial_read (void *opaque, a_target_phys_addr addr)
|
||||
{
|
||||
sh_serial_state *s = opaque;
|
||||
return sh_serial_ioport_read(s, addr);
|
||||
}
|
||||
|
||||
static void sh_serial_write (void *opaque,
|
||||
target_phys_addr_t addr, uint32_t value)
|
||||
a_target_phys_addr addr, uint32_t value)
|
||||
{
|
||||
sh_serial_state *s = opaque;
|
||||
sh_serial_ioport_write(s, addr, value);
|
||||
|
@ -363,7 +363,7 @@ static CPUWriteMemoryFunc * const sh_serial_writefn[] = {
|
|||
&sh_serial_write,
|
||||
};
|
||||
|
||||
void sh_serial_init (target_phys_addr_t base, int feat,
|
||||
void sh_serial_init (a_target_phys_addr base, int feat,
|
||||
uint32_t freq, CharDriverState *chr,
|
||||
qemu_irq eri_source,
|
||||
qemu_irq rxi_source,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue