summaryrefslogtreecommitdiff
path: root/common/memory_commands.c
diff options
context:
space:
mode:
Diffstat (limited to 'common/memory_commands.c')
-rw-r--r--common/memory_commands.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/common/memory_commands.c b/common/memory_commands.c
index db22f330c8..da88c71a63 100644
--- a/common/memory_commands.c
+++ b/common/memory_commands.c
@@ -18,6 +18,7 @@ enum format {
FMT_STRING,
};
+#ifdef CONFIG_CMD_MD
static void show_val(uint32_t address, uint32_t index, enum format fmt)
{
uint32_t val;
@@ -55,7 +56,6 @@ static void show_val(uint32_t address, uint32_t index, enum format fmt)
cflush();
}
-
static int command_mem_dump(int argc, char **argv)
{
uint32_t address, i, num = 1;
@@ -110,6 +110,7 @@ DECLARE_CONSOLE_COMMAND(md, command_mem_dump,
"[.b|.h|.s] addr [count]",
"dump memory values, optionally specifying the format",
NULL);
+#endif /* CONFIG_CMD_MD */
static int command_read_word(int argc, char **argv)
{