diff options
| author | Blue Swirl <blauwirbel@gmail.com> | 2012-06-24 07:09:30 +0000 |
|---|---|---|
| committer | Blue Swirl <blauwirbel@gmail.com> | 2012-06-24 07:09:30 +0000 |
| commit | 99918cec1968b94c8ac3afe51b2a34e5c78c81b3 (patch) | |
| tree | 6c6d23e107bfff988b9c9f442935584322f9ddc9 /hw/a9mpcore.c | |
| parent | affe5189907f397514cdd4ee7446595c1246a0e9 (diff) | |
| parent | 5e87975c87b35c66be3f33080c0e5cf6c6d451a5 (diff) | |
| download | focaccia-qemu-99918cec1968b94c8ac3afe51b2a34e5c78c81b3.tar.gz focaccia-qemu-99918cec1968b94c8ac3afe51b2a34e5c78c81b3.zip | |
Merge branch 'arm-devs.for-upstream' of git://git.linaro.org/people/pmaydell/qemu-arm
* 'arm-devs.for-upstream' of git://git.linaro.org/people/pmaydell/qemu-arm: arm_boot: Conditionalised DTB command line update cadence_ttc: changed master clock frequency cadence_gem: avoid stack-writing buffer-overrun hw/a9mpcore: Fix compilation failure if physaddrs are 64 bit hw/omap.h: Drop broken MEM_VERBOSE tracing hw/armv7m_nvic: Make the NVIC a freestanding class hw/arm_gic: Move CPU interface memory region setup into arm_gic_init hw/arm_gic.c: Make NVIC interrupt numbering a runtime setting hw/arm_gic: Make CPU target registers RAZ/WI on uniprocessor hw/arm_gic: Add qdev property for GIC revision hw/armv7m_nvic: Use MemoryRegions for NVIC specific registers hw/arm_gic: Move NVIC specific reset to armv7m_nvic_reset hw/arm_gic: Remove the special casing of NCPU for the NVIC hw/arm_gic: Remove NVIC ifdefs from gic_state struct arm_boot: Fix typos in comment ARM: Exynos4210 IRQ: Introduce new IRQ gate functionality.
Diffstat (limited to 'hw/a9mpcore.c')
| -rw-r--r-- | hw/a9mpcore.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/hw/a9mpcore.c b/hw/a9mpcore.c index c2ff74d4b6..ebd5b29173 100644 --- a/hw/a9mpcore.c +++ b/hw/a9mpcore.c @@ -75,7 +75,7 @@ static void a9_scu_write(void *opaque, target_phys_addr_t offset, break; default: fprintf(stderr, "Invalid size %u in write to a9 scu register %x\n", - size, offset); + size, (unsigned)offset); return; } |