diff options
Diffstat (limited to 'hw/pl011.c')
-rw-r--r-- | hw/pl011.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/hw/pl011.c b/hw/pl011.c index 14c00eb00a..81de91e4c4 100644 --- a/hw/pl011.c +++ b/hw/pl011.c @@ -53,7 +53,7 @@ static void pl011_update(pl011_state *s) qemu_set_irq(s->irq, flags != 0); } -static uint32_t pl011_read(void *opaque, a_target_phys_addr offset) +static uint32_t pl011_read(void *opaque, target_phys_addr_t offset) { pl011_state *s = (pl011_state *)opaque; uint32_t c; @@ -122,7 +122,7 @@ static void pl011_set_read_trigger(pl011_state *s) s->read_trigger = 1; } -static void pl011_write(void *opaque, a_target_phys_addr offset, +static void pl011_write(void *opaque, target_phys_addr_t offset, uint32_t value) { pl011_state *s = (pl011_state *)opaque; |