mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-04 08:13:54 -06:00
hw/timer/bcm2835: Rename variable holding CTRL_STATUS register
The variable holding the CTRL_STATUS register is misnamed 'status'. Rename it 'ctrl_status' to make it more obvious this register is also used to control the peripheral. Reviewed-by: Luc Michel <luc.michel@greensocs.com> Reviewed-by: Richard Henderson <richard.henderson@linaro.org> Signed-off-by: Philippe Mathieu-Daudé <f4bug@amsat.org> Message-id: 20201010203709.3116542-3-f4bug@amsat.org Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
This commit is contained in:
parent
f3f69362fd
commit
cdb490da86
2 changed files with 5 additions and 5 deletions
|
@ -27,7 +27,7 @@ struct BCM2835SystemTimerState {
|
|||
qemu_irq irq;
|
||||
|
||||
struct {
|
||||
uint32_t status;
|
||||
uint32_t ctrl_status;
|
||||
uint32_t compare[BCM2835_SYSTIMER_COUNT];
|
||||
} reg;
|
||||
};
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue