diff options
| author | Igor Mammedov <imammedo@redhat.com> | 2017-10-12 13:20:07 +0100 |
|---|---|---|
| committer | Peter Maydell <peter.maydell@linaro.org> | 2017-10-12 13:20:07 +0100 |
| commit | 8602beb7fad4b2abd5341f4303ec3c799fa0217c (patch) | |
| tree | 3b33141b7dc7e3333abeee2a71d6bd8fcf6be9ec /include/hw/arm/arm.h | |
| parent | f958537a0d2037134b998dff597f8ae3cc6611fd (diff) | |
| download | focaccia-qemu-8602beb7fad4b2abd5341f4303ec3c799fa0217c.tar.gz focaccia-qemu-8602beb7fad4b2abd5341f4303ec3c799fa0217c.zip | |
arm: fix armv7m_init() declaration to match definition
s/cpu_model/cpu_type/ that has been forgotten during conversion (ba1ba5cc), while touching the line also fixup alignment. Signed-off-by: Igor Mammedov <imammedo@redhat.com> Message-id: 1507710805-221721-1-git-send-email-imammedo@redhat.com Reviewed-by: Peter Maydell <peter.maydell@linaro.org> Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
Diffstat (limited to '')
| -rw-r--r-- | include/hw/arm/arm.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/hw/arm/arm.h b/include/hw/arm/arm.h index a3f79d3379..ce769bde6a 100644 --- a/include/hw/arm/arm.h +++ b/include/hw/arm/arm.h @@ -25,7 +25,7 @@ typedef enum { /* armv7m.c */ DeviceState *armv7m_init(MemoryRegion *system_memory, int mem_size, int num_irq, - const char *kernel_filename, const char *cpu_model); + const char *kernel_filename, const char *cpu_type); /** * armv7m_load_kernel: * @cpu: CPU |