mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-05 08:43:55 -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
|
@ -34,7 +34,7 @@ typedef struct ISAVGAMMState {
|
|||
} ISAVGAMMState;
|
||||
|
||||
/* Memory mapped interface */
|
||||
static uint32_t vga_mm_readb (void *opaque, a_target_phys_addr addr)
|
||||
static uint32_t vga_mm_readb (void *opaque, target_phys_addr_t addr)
|
||||
{
|
||||
ISAVGAMMState *s = opaque;
|
||||
|
||||
|
@ -42,14 +42,14 @@ static uint32_t vga_mm_readb (void *opaque, a_target_phys_addr addr)
|
|||
}
|
||||
|
||||
static void vga_mm_writeb (void *opaque,
|
||||
a_target_phys_addr addr, uint32_t value)
|
||||
target_phys_addr_t addr, uint32_t value)
|
||||
{
|
||||
ISAVGAMMState *s = opaque;
|
||||
|
||||
vga_ioport_write(&s->vga, addr >> s->it_shift, value & 0xff);
|
||||
}
|
||||
|
||||
static uint32_t vga_mm_readw (void *opaque, a_target_phys_addr addr)
|
||||
static uint32_t vga_mm_readw (void *opaque, target_phys_addr_t addr)
|
||||
{
|
||||
ISAVGAMMState *s = opaque;
|
||||
|
||||
|
@ -57,14 +57,14 @@ static uint32_t vga_mm_readw (void *opaque, a_target_phys_addr addr)
|
|||
}
|
||||
|
||||
static void vga_mm_writew (void *opaque,
|
||||
a_target_phys_addr addr, uint32_t value)
|
||||
target_phys_addr_t addr, uint32_t value)
|
||||
{
|
||||
ISAVGAMMState *s = opaque;
|
||||
|
||||
vga_ioport_write(&s->vga, addr >> s->it_shift, value & 0xffff);
|
||||
}
|
||||
|
||||
static uint32_t vga_mm_readl (void *opaque, a_target_phys_addr addr)
|
||||
static uint32_t vga_mm_readl (void *opaque, target_phys_addr_t addr)
|
||||
{
|
||||
ISAVGAMMState *s = opaque;
|
||||
|
||||
|
@ -72,7 +72,7 @@ static uint32_t vga_mm_readl (void *opaque, a_target_phys_addr addr)
|
|||
}
|
||||
|
||||
static void vga_mm_writel (void *opaque,
|
||||
a_target_phys_addr addr, uint32_t value)
|
||||
target_phys_addr_t addr, uint32_t value)
|
||||
{
|
||||
ISAVGAMMState *s = opaque;
|
||||
|
||||
|
@ -91,8 +91,8 @@ static CPUWriteMemoryFunc * const vga_mm_write_ctrl[] = {
|
|||
&vga_mm_writel,
|
||||
};
|
||||
|
||||
static void vga_mm_init(ISAVGAMMState *s, a_target_phys_addr vram_base,
|
||||
a_target_phys_addr ctrl_base, int it_shift)
|
||||
static void vga_mm_init(ISAVGAMMState *s, target_phys_addr_t vram_base,
|
||||
target_phys_addr_t ctrl_base, int it_shift)
|
||||
{
|
||||
int s_ioport_ctrl, vga_io_memory;
|
||||
|
||||
|
@ -108,8 +108,8 @@ static void vga_mm_init(ISAVGAMMState *s, a_target_phys_addr vram_base,
|
|||
qemu_register_coalesced_mmio(vram_base + 0x000a0000, 0x20000);
|
||||
}
|
||||
|
||||
int isa_vga_mm_init(a_target_phys_addr vram_base,
|
||||
a_target_phys_addr ctrl_base, int it_shift)
|
||||
int isa_vga_mm_init(target_phys_addr_t vram_base,
|
||||
target_phys_addr_t ctrl_base, int it_shift)
|
||||
{
|
||||
ISAVGAMMState *s;
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue