OSDN Git Service

versatilepb: Use symbolic indices for ARM PIC
authorStefan Weil <sw@weilnetz.de>
Thu, 4 Oct 2012 20:49:43 +0000 (22:49 +0200)
committerStefan Hajnoczi <stefanha@gmail.com>
Fri, 5 Oct 2012 13:50:09 +0000 (15:50 +0200)
It is more readable, and all other code does it like that, too.

Signed-off-by: Stefan Weil <sw@weilnetz.de>
Reviewed-by: Peter Maydell <peter.maydell@linaro.org>
Signed-off-by: Stefan Hajnoczi <stefanha@gmail.com>
hw/versatilepb.c

index 7a92034..b3f8077 100644 (file)
@@ -211,7 +211,8 @@ static void versatile_init(ram_addr_t ram_size,
 
     cpu_pic = arm_pic_init_cpu(cpu);
     dev = sysbus_create_varargs("pl190", 0x10140000,
-                                cpu_pic[0], cpu_pic[1], NULL);
+                                cpu_pic[ARM_PIC_CPU_IRQ],
+                                cpu_pic[ARM_PIC_CPU_FIQ], NULL);
     for (n = 0; n < 32; n++) {
         pic[n] = qdev_get_gpio_in(dev, n);
     }