diff options
author | Simon Glass <sjg@chromium.org> | 2019-12-06 21:41:56 -0700 |
---|---|---|
committer | Bin Meng <bmeng.cn@gmail.com> | 2019-12-15 11:44:11 +0800 |
commit | 89694de514387e87385aa0f111ed76ab91ba20a3 (patch) | |
tree | 7de503fb733f89e9fbe4f5e02d9abc038ed05823 /arch/sandbox | |
parent | 5bee27aa41eeafb71f1d467f81f7fae6ee8cfa6d (diff) | |
download | u-boot-89694de514387e87385aa0f111ed76ab91ba20a3.tar.gz u-boot-89694de514387e87385aa0f111ed76ab91ba20a3.tar.xz u-boot-89694de514387e87385aa0f111ed76ab91ba20a3.zip |
sandbox: Disable mmio by default in tests
When reseting sandbox for tests, disable mmio support since that is the
default state.
Signed-off-by: Simon Glass <sjg@chromium.org>
Reviewed-by: Bin Meng <bmeng.cn@gmail.com>
Diffstat (limited to 'arch/sandbox')
-rw-r--r-- | arch/sandbox/cpu/state.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/arch/sandbox/cpu/state.c b/arch/sandbox/cpu/state.c index dee5fde4f7..cd46e000f5 100644 --- a/arch/sandbox/cpu/state.c +++ b/arch/sandbox/cpu/state.c @@ -356,6 +356,7 @@ void state_reset_for_test(struct sandbox_state *state) /* No reset yet, so mark it as such. Always allow power reset */ state->last_sysreset = SYSRESET_COUNT; state->sysreset_allowed[SYSRESET_POWER_OFF] = true; + state->allow_memio = false; memset(&state->wdt, '\0', sizeof(state->wdt)); memset(state->spi, '\0', sizeof(state->spi)); |