]> git.sur5r.net Git - u-boot/commitdiff
Remove superfluous preprocessor tests from some cmd_*.c files.
authorRobert P. J. Day <rpjday@crashcourse.ca>
Thu, 19 Nov 2009 16:00:28 +0000 (11:00 -0500)
committerWolfgang Denk <wd@denx.de>
Wed, 2 Dec 2009 22:46:45 +0000 (23:46 +0100)
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>
common/cmd_cache.c
common/cmd_mgdisk.c

index 0dfa3363bdd754e4dbac3ddadb339c497acffeb2..12022584196153e2b3d570f4fae1d692520807f4 100644 (file)
@@ -27,8 +27,6 @@
 #include <common.h>
 #include <command.h>
 
-#if defined(CONFIG_CMD_CACHE)
-
 static int on_off (const char *);
 
 int do_icache ( cmd_tbl_t *cmdtp, int flag, int argc, char *argv[])
@@ -108,5 +106,3 @@ U_BOOT_CMD(
        "[on, off]\n"
        "    - enable or disable data (writethrough) cache"
 );
-
-#endif
index aadc3356362fb45b8ad6310194e69e422c8df3a5..3ba62f618c0282fa6f527cea9e1712a8a771f5bf 100644 (file)
@@ -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