diff options
author | Paul Brook <paul@codesourcery.com> | 2009-06-04 13:12:05 +0100 |
---|---|---|
committer | Paul Brook <paul@codesourcery.com> | 2009-06-04 13:12:05 +0100 |
commit | bdb11366b9370e97fb436444c697c01fe839dc11 (patch) | |
tree | 029aadb55bb219df61dc353e89f38c16629df0a7 /hw/armv7m.c | |
parent | f3d08ee6aeb6cc85928dda4ec5e972b85cda495d (diff) | |
download | qemu-bdb11366b9370e97fb436444c697c01fe839dc11.zip |
Remove ARM NVIC initialization hack
The ARMv7-M NVIC device pokes itself into the CPU state. Now we have a
proper device model we can have the CPU/SoC code do this.
Signed-off-by: Paul Brook <paul@codesourcery.com>
Diffstat (limited to 'hw/armv7m.c')
-rw-r--r-- | hw/armv7m.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/hw/armv7m.c b/hw/armv7m.c index 9657ed1f16..c3c5b9e347 100644 --- a/hw/armv7m.c +++ b/hw/armv7m.c @@ -198,7 +198,7 @@ qemu_irq *armv7m_init(int flash_size, int sram_size, armv7m_bitband_init(); nvic = qdev_create(NULL, "armv7m_nvic"); - qdev_set_prop_ptr(nvic, "cpu", env); + env->v7m.nvic = nvic; qdev_init(nvic); cpu_pic = arm_pic_init_cpu(env); sysbus_connect_irq(sysbus_from_qdev(nvic), 0, cpu_pic[ARM_PIC_CPU_IRQ]); |