mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-04 00:03:54 -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
|
@ -134,7 +134,7 @@ static void pxa2xx_timer_update4(void *opaque, uint64_t now_qemu, int n)
|
|||
qemu_mod_timer(s->tm4[n].tm.qtimer, new_qemu);
|
||||
}
|
||||
|
||||
static uint32_t pxa2xx_timer_read(void *opaque, target_phys_addr_t offset)
|
||||
static uint32_t pxa2xx_timer_read(void *opaque, a_target_phys_addr offset)
|
||||
{
|
||||
pxa2xx_timer_info *s = (pxa2xx_timer_info *) opaque;
|
||||
int tm = 0;
|
||||
|
@ -211,7 +211,7 @@ static uint32_t pxa2xx_timer_read(void *opaque, target_phys_addr_t offset)
|
|||
return 0;
|
||||
}
|
||||
|
||||
static void pxa2xx_timer_write(void *opaque, target_phys_addr_t offset,
|
||||
static void pxa2xx_timer_write(void *opaque, a_target_phys_addr offset,
|
||||
uint32_t value)
|
||||
{
|
||||
int i, tm = 0;
|
||||
|
@ -427,7 +427,7 @@ static int pxa2xx_timer_load(QEMUFile *f, void *opaque, int version_id)
|
|||
return 0;
|
||||
}
|
||||
|
||||
static pxa2xx_timer_info *pxa2xx_timer_init(target_phys_addr_t base,
|
||||
static pxa2xx_timer_info *pxa2xx_timer_init(a_target_phys_addr base,
|
||||
qemu_irq *irqs)
|
||||
{
|
||||
int i;
|
||||
|
@ -461,14 +461,14 @@ static pxa2xx_timer_info *pxa2xx_timer_init(target_phys_addr_t base,
|
|||
return s;
|
||||
}
|
||||
|
||||
void pxa25x_timer_init(target_phys_addr_t base, qemu_irq *irqs)
|
||||
void pxa25x_timer_init(a_target_phys_addr base, qemu_irq *irqs)
|
||||
{
|
||||
pxa2xx_timer_info *s = pxa2xx_timer_init(base, irqs);
|
||||
s->freq = PXA25X_FREQ;
|
||||
s->tm4 = NULL;
|
||||
}
|
||||
|
||||
void pxa27x_timer_init(target_phys_addr_t base,
|
||||
void pxa27x_timer_init(a_target_phys_addr base,
|
||||
qemu_irq *irqs, qemu_irq irq4)
|
||||
{
|
||||
pxa2xx_timer_info *s = pxa2xx_timer_init(base, irqs);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue