diff options
| author | Peter Maydell | 2019-02-28 11:55:16 +0100 |
|---|---|---|
| committer | Peter Maydell | 2019-02-28 12:03:04 +0100 |
| commit | 394e10d2bb300e4445b0ce37f6d138302f2ff04e (patch) | |
| tree | 6f4968c374c5021fc76672ccb6eb996899f0535b /include/hw | |
| parent | target/arm/arm-powerctl: Add new arm_set_cpu_on_and_reset() (diff) | |
| download | qemu-394e10d2bb300e4445b0ce37f6d138302f2ff04e.tar.gz qemu-394e10d2bb300e4445b0ce37f6d138302f2ff04e.tar.xz qemu-394e10d2bb300e4445b0ce37f6d138302f2ff04e.zip | |
hw/misc/iotkit-sysctl: Correct typo in INITSVTOR0 register name
The iotkit-sysctl device has a register it names INITSVRTOR0.
This is actually a typo present in the IoTKit documentation
and also in part of the SSE-200 documentation: it should be
INITSVTOR0 because it is specifying the initial value of the
Secure VTOR register in the CPU. Correct the typo.
Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
Reviewed-by: Richard Henderson <richard.henderson@linaro.org>
Message-id: 20190219125808.25174-6-peter.maydell@linaro.org
Diffstat (limited to 'include/hw')
| -rw-r--r-- | include/hw/misc/iotkit-sysctl.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/hw/misc/iotkit-sysctl.h b/include/hw/misc/iotkit-sysctl.h index e36613cb5e..17a145517a 100644 --- a/include/hw/misc/iotkit-sysctl.h +++ b/include/hw/misc/iotkit-sysctl.h @@ -41,7 +41,7 @@ typedef struct IoTKitSysCtl { uint32_t reset_syndrome; uint32_t reset_mask; uint32_t gretreg; - uint32_t initsvrtor0; + uint32_t initsvtor0; uint32_t cpuwait; uint32_t wicctrl; } IoTKitSysCtl; |
