diff options
| author | Mike Frysinger <vapier@gentoo.org> | 2008-10-14 07:05:24 -0400 | 
|---|---|---|
| committer | Wolfgang Denk <wd@denx.de> | 2008-10-14 14:17:20 +0200 | 
| commit | d5fd0b49210c941de8a1fce3947ace92243ab5ca (patch) | |
| tree | 8f8d56d1e084aa8560c2288bc80fa9f8ee220408 /common/cmd_strings.c | |
| parent | fecb5ade3b37f62981f2b05b621005850173aaa9 (diff) | |
| download | olio-uboot-2014.01-d5fd0b49210c941de8a1fce3947ace92243ab5ca.tar.xz olio-uboot-2014.01-d5fd0b49210c941de8a1fce3947ace92243ab5ca.zip | |
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 <vapier@gentoo.org>
Diffstat (limited to 'common/cmd_strings.c')
| -rw-r--r-- | common/cmd_strings.c | 4 | 
1 files changed, 0 insertions, 4 deletions
| diff --git a/common/cmd_strings.c b/common/cmd_strings.c index bbf56a033..db54f29e2 100644 --- a/common/cmd_strings.c +++ b/common/cmd_strings.c @@ -10,8 +10,6 @@  #include <common.h>  #include <command.h> -#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",  	"<addr> [byte count]\n"  	"    - display strings at <addr> for at least [byte count] or first double NUL\n"); - -#endif |