diff options
author | pbrook | 2008-12-01 19:59:50 +0100 |
---|---|---|
committer | pbrook | 2008-12-01 19:59:50 +0100 |
commit | 8da3ff180974732fc4272cb4433fef85c1822961 (patch) | |
tree | f23cfaffa61efb36aa46dfeb771ad33cbfd4f3aa /hw/pxa2xx_gpio.c | |
parent | Allocate cleared memory for cpu state. (diff) | |
download | qemu-8da3ff180974732fc4272cb4433fef85c1822961.tar.gz qemu-8da3ff180974732fc4272cb4433fef85c1822961.tar.xz qemu-8da3ff180974732fc4272cb4433fef85c1822961.zip |
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_gpio.c')
-rw-r--r-- | hw/pxa2xx_gpio.c | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/hw/pxa2xx_gpio.c b/hw/pxa2xx_gpio.c index e3a30bc45e..0f3dcb101a 100644 --- a/hw/pxa2xx_gpio.c +++ b/hw/pxa2xx_gpio.c @@ -13,7 +13,6 @@ #define PXA2XX_GPIO_BANKS 4 struct pxa2xx_gpio_info_s { - target_phys_addr_t base; qemu_irq *pic; int lines; CPUState *cpu_env; @@ -140,7 +139,6 @@ static uint32_t pxa2xx_gpio_read(void *opaque, target_phys_addr_t offset) struct pxa2xx_gpio_info_s *s = (struct pxa2xx_gpio_info_s *) opaque; uint32_t ret; int bank; - offset -= s->base; if (offset >= 0x200) return 0; @@ -193,7 +191,6 @@ static void pxa2xx_gpio_write(void *opaque, { struct pxa2xx_gpio_info_s *s = (struct pxa2xx_gpio_info_s *) opaque; int bank; - offset -= s->base; if (offset >= 0x200) return; @@ -308,7 +305,6 @@ struct pxa2xx_gpio_info_s *pxa2xx_gpio_init(target_phys_addr_t base, s = (struct pxa2xx_gpio_info_s *) qemu_mallocz(sizeof(struct pxa2xx_gpio_info_s)); memset(s, 0, sizeof(struct pxa2xx_gpio_info_s)); - s->base = base; s->pic = pic; s->lines = lines; s->cpu_env = env; |