diff options
author | Simon Glass <sjg@chromium.org> | 2018-11-15 18:44:01 -0700 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2018-11-26 08:25:35 -0500 |
commit | 1ca910be5df2e2ba80f7ac496570a88e34593cf8 (patch) | |
tree | c317f4a964c8b23ce05a1105a2469143590679ba /arch/sandbox/include/asm/state.h | |
parent | 20d4440189b924eaf9d77e9f2470cd39abe34a4a (diff) | |
download | u-boot-1ca910be5df2e2ba80f7ac496570a88e34593cf8.tar.gz |
sandbox: Add an option to display of-platdata in SPL
At present we don't have a test that of-platdata can be accessed in SPL.
Add this in as a command-line option to SPL.
Signed-off-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'arch/sandbox/include/asm/state.h')
-rw-r--r-- | arch/sandbox/include/asm/state.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/arch/sandbox/include/asm/state.h b/arch/sandbox/include/asm/state.h index dcb6d5f568..0a2e3c41ae 100644 --- a/arch/sandbox/include/asm/state.h +++ b/arch/sandbox/include/asm/state.h @@ -89,6 +89,7 @@ struct sandbox_state { bool skip_delays; /* Ignore any time delays (for test) */ bool show_test_output; /* Don't suppress stdout in tests */ int default_log_level; /* Default log level for sandbox */ + bool show_of_platdata; /* Show of-platdata in SPL */ /* Pointer to information for each SPI bus/cs */ struct sandbox_spi_info spi[CONFIG_SANDBOX_SPI_MAX_BUS] |