diff options
author | pbrook <pbrook@c046a42c-6fe2-441c-8c8c-71466251a162> | 2008-12-01 18:59:50 +0000 |
---|---|---|
committer | pbrook <pbrook@c046a42c-6fe2-441c-8c8c-71466251a162> | 2008-12-01 18:59:50 +0000 |
commit | 8da3ff180974732fc4272cb4433fef85c1822961 (patch) | |
tree | f23cfaffa61efb36aa46dfeb771ad33cbfd4f3aa /hw/pxa2xx_timer.c | |
parent | 6ad1d22b15c0a091edb1d8efc983c1d75f74ef45 (diff) |
Change MMIO callbacks to use offsets, not absolute addresses.
Signed-off-by: Paul Brook <paul@codesourcery.com>
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@5849 c046a42c-6fe2-441c-8c8c-71466251a162
Diffstat (limited to 'hw/pxa2xx_timer.c')
-rw-r--r-- | hw/pxa2xx_timer.c | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/hw/pxa2xx_timer.c b/hw/pxa2xx_timer.c index 01cfc4fab9..dd17fcf773 100644 --- a/hw/pxa2xx_timer.c +++ b/hw/pxa2xx_timer.c @@ -78,7 +78,6 @@ struct pxa2xx_timer4_s { }; typedef struct { - target_phys_addr_t base; int32_t clock; int32_t oldclock; uint64_t lastload; @@ -140,8 +139,6 @@ static uint32_t pxa2xx_timer_read(void *opaque, target_phys_addr_t offset) pxa2xx_timer_info *s = (pxa2xx_timer_info *) opaque; int tm = 0; - offset -= s->base; - switch (offset) { case OSMR3: tm ++; case OSMR2: tm ++; @@ -221,8 +218,6 @@ static void pxa2xx_timer_write(void *opaque, target_phys_addr_t offset, int i, tm = 0; pxa2xx_timer_info *s = (pxa2xx_timer_info *) opaque; - offset -= s->base; - switch (offset) { case OSMR3: tm ++; case OSMR2: tm ++; @@ -442,7 +437,6 @@ static pxa2xx_timer_info *pxa2xx_timer_init(target_phys_addr_t base, pxa2xx_timer_info *s; s = (pxa2xx_timer_info *) qemu_mallocz(sizeof(pxa2xx_timer_info)); - s->base = base; s->irq_enabled = 0; s->oldclock = 0; s->clock = 0; |