]> git.kernelconcepts.de Git - karo-tx-uboot.git/blobdiff - common/cmd_cache.c
ARM Update mach-types
[karo-tx-uboot.git] / common / cmd_cache.c
index caa56daf2ed439a85dbc4524fd56a5c2071bc268..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[])
@@ -97,16 +95,14 @@ static int on_off (const char *s)
 
 U_BOOT_CMD(
        icache,   2,   1,     do_icache,
-       "icache  - enable or disable instruction cache\n",
+       "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,
-       "dcache  - enable or disable data cache\n",
+       "enable or disable data cache",
        "[on, off]\n"
-       "    - enable or disable data (writethrough) cache\n"
+       "    - enable or disable data (writethrough) cache"
 );
-
-#endif