Cant see it affecting the change pattern to the zynq boot though, so theres no blocker.
Acked-by: Peter A.G. Crosthwaite <peter.crosthwa...@petalogix.com> On Sat, May 19, 2012 at 2:01 AM, Andreas Färber <afaer...@suse.de> wrote: > Needed for arm_load_kernel(). > > Signed-off-by: Andreas Färber <afaer...@suse.de> > --- > hw/xilinx_zynq.c | 8 ++++---- > 1 files changed, 4 insertions(+), 4 deletions(-) > > diff --git a/hw/xilinx_zynq.c b/hw/xilinx_zynq.c > index 7290c64..68349e2 100644 > --- a/hw/xilinx_zynq.c > +++ b/hw/xilinx_zynq.c > @@ -50,7 +50,7 @@ static void zynq_init(ram_addr_t ram_size, const char > *boot_device, > const char *kernel_filename, const char > *kernel_cmdline, > const char *initrd_filename, const char *cpu_model) > { > - CPUARMState *env = NULL; > + ARMCPU *cpu; > MemoryRegion *address_space_mem = get_system_memory(); > MemoryRegion *ext_ram = g_new(MemoryRegion, 1); > MemoryRegion *ocm_ram = g_new(MemoryRegion, 1); > @@ -66,12 +66,12 @@ static void zynq_init(ram_addr_t ram_size, const char > *boot_device, > cpu_model = "cortex-a9"; > } > > - env = cpu_init(cpu_model); > - if (!env) { > + cpu = cpu_arm_init(cpu_model); > + if (!cpu) { > fprintf(stderr, "Unable to find CPU definition\n"); > exit(1); > } > - irqp = arm_pic_init_cpu(env); > + irqp = arm_pic_init_cpu(&cpu->env); > cpu_irq = irqp[ARM_PIC_CPU_IRQ]; > > /* max 2GB ram */ > -- > 1.7.7 >