diff options
author | Tom Rini <trini@ti.com> | 2013-03-12 10:07:19 -0400 |
---|---|---|
committer | Tom Rini <trini@ti.com> | 2013-03-12 12:43:31 -0400 |
commit | 68149e94053d18b54a63c9a44c87f178f59a169e (patch) | |
tree | 3c8a45e081d7ae92533ef88aeb2e4f6806199aa2 /common/cmd_mem.c | |
parent | d514544fe04e1b83ca2f9a1f64b885d153a2d2d5 (diff) | |
download | u-boot-imx-68149e94053d18b54a63c9a44c87f178f59a169e.zip u-boot-imx-68149e94053d18b54a63c9a44c87f178f59a169e.tar.gz u-boot-imx-68149e94053d18b54a63c9a44c87f178f59a169e.tar.bz2 |
cmd_mem.c: Fix warning when CONFIG_CMD_MEMTEST is not set
mem_test_quick and mem_test_alt functions are only called by
do_mem_mtest, so move them under the #ifdef
Signed-off-by: Tom Rini <trini@ti.com>
Diffstat (limited to 'common/cmd_mem.c')
-rw-r--r-- | common/cmd_mem.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/common/cmd_mem.c b/common/cmd_mem.c index 53572f7..64dd76a 100644 --- a/common/cmd_mem.c +++ b/common/cmd_mem.c @@ -631,6 +631,7 @@ int do_mem_loopw (cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[]) } #endif /* CONFIG_LOOPW */ +#ifdef CONFIG_CMD_MEMTEST static ulong mem_test_alt(vu_long *buf, ulong start_addr, ulong end_addr, vu_long *dummy) { @@ -910,7 +911,6 @@ static ulong mem_test_quick(vu_long *buf, ulong start_addr, ulong end_addr, return 0; } -#ifdef CONFIG_CMD_MEMTEST /* * Perform a memory test. A more complete alternative test can be * configured using CONFIG_SYS_ALT_MEMTEST. The complete test loops until |