diff options
| author | Tom Rini <[email protected]> | 2021-12-12 22:12:29 -0500 |
|---|---|---|
| committer | Tom Rini <[email protected]> | 2021-12-27 08:41:38 -0500 |
| commit | ff27af1244113a8cd27624430799d58e3ce5898b (patch) | |
| tree | ed036976593bc77c5bfed6ae25d5a00a625a133a /cmd | |
| parent | 82edd737620ab5ab7361c60249b9055725e87ed6 (diff) | |
Convert CONFIG_SYS_MEMTEST_START et al to Kconfig
This converts the following to Kconfig:
CONFIG_SYS_MEMTEST_START
CONFIG_SYS_MEMTEST_END
This is removing unused defines and correcting the default value to be
0x0 as we are a hex symbol.
Signed-off-by: Tom Rini <[email protected]>
Diffstat (limited to 'cmd')
| -rw-r--r-- | cmd/Kconfig | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cmd/Kconfig b/cmd/Kconfig index fd8f0227c89..7747ab50a04 100644 --- a/cmd/Kconfig +++ b/cmd/Kconfig @@ -741,7 +741,7 @@ endif config SYS_MEMTEST_START hex "default start address for mtest" - default 0 + default 0x0 help This is the default start address for mtest for simple read/write test. If no arguments are given to mtest, default address is used |
