diff options
Diffstat (limited to 'hw/omap_i2c.c')
-rw-r--r-- | hw/omap_i2c.c | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/hw/omap_i2c.c b/hw/omap_i2c.c index 127e69ca0a..3b7fa60662 100644 --- a/hw/omap_i2c.c +++ b/hw/omap_i2c.c @@ -23,7 +23,6 @@ #include "omap.h" struct omap_i2c_s { - target_phys_addr_t base; qemu_irq irq; qemu_irq drq[2]; i2c_slave slave; @@ -493,7 +492,6 @@ struct omap_i2c_s *omap_i2c_init(target_phys_addr_t base, /* TODO: set a value greater or equal to real hardware */ s->revision = 0x11; - s->base = base; s->irq = irq; s->drq[0] = dma[0]; s->drq[1] = dma[1]; @@ -505,7 +503,7 @@ struct omap_i2c_s *omap_i2c_init(target_phys_addr_t base, iomemtype = cpu_register_io_memory(0, omap_i2c_readfn, omap_i2c_writefn, s); - cpu_register_physical_memory(s->base, 0x800, iomemtype); + cpu_register_physical_memory(base, 0x800, iomemtype); return s; } @@ -529,7 +527,7 @@ struct omap_i2c_s *omap2_i2c_init(struct omap_target_agent_s *ta, iomemtype = l4_register_io_memory(0, omap_i2c_readfn, omap_i2c_writefn, s); - s->base = omap_l4_attach(ta, 0, iomemtype); + omap_l4_attach(ta, 0, iomemtype); return s; } |