From: Peter Tyser Date: Wed, 11 Nov 2009 16:36:19 +0000 (-0600) Subject: cmd_license: Remove unneeded #ifdef CONFIG_CMD_LICENSE X-Git-Tag: v2009.11-rc2~29 X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=a5dd4dc64fe68e549c5ffcf6a048281b5ba94752;p=karo-tx-uboot.git cmd_license: Remove unneeded #ifdef CONFIG_CMD_LICENSE cmd_license is already conditionally compiled at the Makefile-level. Signed-off-by: Peter Tyser --- diff --git a/common/cmd_license.c b/common/cmd_license.c index 141215b3a5..c6f272ad34 100644 --- a/common/cmd_license.c +++ b/common/cmd_license.c @@ -23,8 +23,6 @@ #include -#if defined(CONFIG_CMD_LICENSE) - /* COPYING is currently 15951 bytes in size */ #define LICENSE_MAX 20480 @@ -56,5 +54,3 @@ U_BOOT_CMD(license, 1, 1, do_license, "print GPL license text", "" ); - -#endif /* CONFIG_CMD_LICENSE */