06.12.2013 22:43, Stefan Weil wrote: > The memory region can be included by value instead of by reference in the > device state (like it is done in other SoCs). > > Signed-off-by: Stefan Weil <s...@weilnetz.de> > --- > hw/arm/highbank.c | 7 +++---- > 1 file changed, 3 insertions(+), 4 deletions(-) > > diff --git a/hw/arm/highbank.c b/hw/arm/highbank.c > index fe98ef1..54384b3 100644 > --- a/hw/arm/highbank.c > +++ b/hw/arm/highbank.c > @@ -125,7 +125,7 @@ typedef struct { > SysBusDevice parent_obj; > /*< public >*/ > > - MemoryRegion *iomem; > + MemoryRegion iomem; > uint32_t regs[NUM_REGS]; > } HighbankRegsState;
Don't we have active maintainer for arm? (Who is Cc'd on the original patch). > @@ -154,10 +154,9 @@ static int highbank_regs_init(SysBusDevice *dev) > { > HighbankRegsState *s = HIGHBANK_REGISTERS(dev); > > - s->iomem = g_new(MemoryRegion, 1); > - memory_region_init_io(s->iomem, OBJECT(s), &hb_mem_ops, s->regs, > + memory_region_init_io(&s->iomem, OBJECT(s), &hb_mem_ops, s->regs, > "highbank_regs", 0x1000); I know right to nothing about arm, does it have any alignment requiriments, which may break here? Thanks, /mjt