diff options
author | Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> | 2008-08-29 21:53:57 +0200 |
---|---|---|
committer | Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> | 2008-08-29 21:53:57 +0200 |
commit | 3de7bf0e6b1ad2608014096c8192f13229b2e9d7 (patch) | |
tree | af811b50c9af32b32a5408af99a4778943c6347e | |
parent | 578118bdf122877ae769776be002255be447b4fa (diff) | |
download | u-boot-3de7bf0e6b1ad2608014096c8192f13229b2e9d7.zip u-boot-3de7bf0e6b1ad2608014096c8192f13229b2e9d7.tar.gz u-boot-3de7bf0e6b1ad2608014096c8192f13229b2e9d7.tar.bz2 |
cmd_terminal: remove no need ifdef
Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
-rw-r--r-- | common/cmd_terminal.c | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/common/cmd_terminal.c b/common/cmd_terminal.c index 8871607..57943c1 100644 --- a/common/cmd_terminal.c +++ b/common/cmd_terminal.c @@ -28,8 +28,6 @@ #include <command.h> #include <devices.h> -#if defined(CONFIG_CMD_TERMINAL) - int do_terminal(cmd_tbl_t * cmd, int flag, int argc, char *argv[]) { int i, l; @@ -98,5 +96,3 @@ U_BOOT_CMD( "terminal - start terminal emulator\n", "" ); - -#endif /* CONFIG_CMD_TERMINAL */ |