aboutsummaryrefslogtreecommitdiff
path: root/hw/omap_synctimer.c
diff options
context:
space:
mode:
Diffstat (limited to 'hw/omap_synctimer.c')
-rw-r--r--hw/omap_synctimer.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/hw/omap_synctimer.c b/hw/omap_synctimer.c
index b1c31ea..308b0fa 100644
--- a/hw/omap_synctimer.c
+++ b/hw/omap_synctimer.c
@@ -37,7 +37,7 @@ void omap_synctimer_reset(struct omap_synctimer_s *s)
s->val = omap_synctimer_read(s);
}
-static uint32_t omap_synctimer_readw(void *opaque, target_phys_addr_t addr)
+static uint32_t omap_synctimer_readw(void *opaque, hwaddr addr)
{
struct omap_synctimer_s *s = (struct omap_synctimer_s *) opaque;
@@ -53,7 +53,7 @@ static uint32_t omap_synctimer_readw(void *opaque, target_phys_addr_t addr)
return 0;
}
-static uint32_t omap3_synctimer_readw(void *opaque, target_phys_addr_t addr)
+static uint32_t omap3_synctimer_readw(void *opaque, hwaddr addr)
{
struct omap_synctimer_s *s = (struct omap_synctimer_s *)opaque;
return (addr == 0x04)
@@ -61,7 +61,7 @@ static uint32_t omap3_synctimer_readw(void *opaque, target_phys_addr_t addr)
: omap_synctimer_readw(opaque, addr);
}
-static uint32_t omap_synctimer_readh(void *opaque, target_phys_addr_t addr)
+static uint32_t omap_synctimer_readh(void *opaque, hwaddr addr)
{
struct omap_synctimer_s *s = (struct omap_synctimer_s *) opaque;
uint32_t ret;
@@ -75,7 +75,7 @@ static uint32_t omap_synctimer_readh(void *opaque, target_phys_addr_t addr)
}
}
-static uint32_t omap3_synctimer_readh(void *opaque, target_phys_addr_t addr)
+static uint32_t omap3_synctimer_readh(void *opaque, hwaddr addr)
{
struct omap_synctimer_s *s = (struct omap_synctimer_s *) opaque;
uint32_t ret;
@@ -89,14 +89,14 @@ static uint32_t omap3_synctimer_readh(void *opaque, target_phys_addr_t addr)
return ret & 0xffff;
}
-static void omap_synctimer_write(void *opaque, target_phys_addr_t addr,
+static void omap_synctimer_write(void *opaque, hwaddr addr,
uint32_t value)
{
OMAP_BAD_REG(addr);
}
-static void omap3_synctimer_write(void *opaque, target_phys_addr_t addr,
+static void omap3_synctimer_write(void *opaque, hwaddr addr,
uint32_t value)
{
struct omap_synctimer_s *s = (struct omap_synctimer_s *)opaque;