]> git.sur5r.net Git - u-boot/blobdiff - common/cmd_cache.c
Remove superfluous preprocessor tests from some cmd_*.c files.
[u-boot] / common / cmd_cache.c
index c0f2cbaf6742359edbc65a2ab3e26a0db93bf49a..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[])
@@ -99,14 +97,12 @@ U_BOOT_CMD(
        icache,   2,   1,     do_icache,
        "enable or disable instruction cache",
        "[on, off]\n"
-       "    - enable or disable instruction cache\n"
+       "    - enable or disable instruction cache"
 );
 
 U_BOOT_CMD(
        dcache,   2,   1,     do_dcache,
        "enable or disable data cache",
        "[on, off]\n"
-       "    - enable or disable data (writethrough) cache\n"
+       "    - enable or disable data (writethrough) cache"
 );
-
-#endif