summaryrefslogtreecommitdiff
path: root/common/cmd_mgdisk.c
diff options
context:
space:
mode:
authorRobert P. J. Day <rpjday@crashcourse.ca>2009-11-19 16:00:28 (GMT)
committerWolfgang Denk <wd@denx.de>2009-12-02 22:46:45 (GMT)
commitbcb324d68f7955c1136dafc944eb55db8ebaa601 (patch)
tree07ee4a5704dd9e124e0f113162956e56f829d991 /common/cmd_mgdisk.c
parentad53226156fa64b6d04c0d1d6e91e09979cbea15 (diff)
downloadu-boot-bcb324d68f7955c1136dafc944eb55db8ebaa601.tar.xz
Remove superfluous preprocessor tests from some cmd_*.c files.
A small number of common/cmd_*.c files contain preprocessor tests that are apparently superfluous since those same tests are used in the Makefile to control the compilation of those files. Those tests are clearly redundant as long as they surround the entirety of the source in those files. Signed-off-by: Robert P. J. Day <rpjday@crashcourse.ca>
Diffstat (limited to 'common/cmd_mgdisk.c')
-rw-r--r--common/cmd_mgdisk.c4
1 files changed, 0 insertions, 4 deletions
diff --git a/common/cmd_mgdisk.c b/common/cmd_mgdisk.c
index aadc335..3ba62f6 100644
--- a/common/cmd_mgdisk.c
+++ b/common/cmd_mgdisk.c
@@ -24,8 +24,6 @@
#include <common.h>
#include <command.h>
-#if defined (CONFIG_CMD_MG_DISK)
-
#include <mg_disk.h>
int do_mg_disk_cmd (cmd_tbl_t *cmdtp, int flag, int argc, char *argv[])
@@ -72,5 +70,3 @@ U_BOOT_CMD(
" - sector read : mgd readsec [sector] [to] [counts]\n"
" - sector write : mgd writesec [from] [sector] [counts]"
);
-
-#endif