From: Mike Frysinger Date: Tue, 14 Oct 2008 11:05:24 +0000 (-0400) Subject: strings cmd: drop old CONFIG_CFG_STRINGS define X-Git-Tag: v2008.10-rc3~14 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=d5fd0b49210c941de8a1fce3947ace92243ab5ca;p=oweals%2Fu-boot.git strings cmd: drop old CONFIG_CFG_STRINGS define We don't need CONFIG_CFG_STRINGS anymore now that we have the define CONFIG_CMD_STRINGS and Makefile control. Signed-off-by: Mike Frysinger --- diff --git a/common/cmd_strings.c b/common/cmd_strings.c index bbf56a033b..db54f29e26 100644 --- a/common/cmd_strings.c +++ b/common/cmd_strings.c @@ -10,8 +10,6 @@ #include #include -#ifdef CONFIG_CFG_STRINGS - static char *start_addr, *last_addr; int do_strings(cmd_tbl_t *cmdtp, int flag, int argc, char *argv[]) @@ -45,5 +43,3 @@ U_BOOT_CMD(strings, 3, 1, do_strings, "strings - display strings\n", " [byte count]\n" " - display strings at for at least [byte count] or first double NUL\n"); - -#endif