X-Git-Url: https://git.sur5r.net/?a=blobdiff_plain;f=common%2Fcmd_license.c;h=70645d5ed2b065233b85635025453e7941d9bd66;hb=210576fc5e5d323c8039f95c7b5b2c7512a550e4;hp=301af8d967cded56fd521df75d6cb688c647b0b7;hpb=0a823aa2a8a8c0685e73900f387d602d7edafc0e;p=u-boot diff --git a/common/cmd_license.c b/common/cmd_license.c index 301af8d967..70645d5ed2 100644 --- a/common/cmd_license.c +++ b/common/cmd_license.c @@ -23,17 +23,14 @@ #include -#if defined(CONFIG_CMD_LICENSE) - /* COPYING is currently 15951 bytes in size */ #define LICENSE_MAX 20480 #include #include #include -int gunzip(void *, int, unsigned char *, unsigned long *); -int do_license(cmd_tbl_t *cmdtp, int flag, int argc, char *argv[]) +int do_license(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[]) { char *tok, *dst = malloc(LICENSE_MAX); unsigned long len = LICENSE_MAX; @@ -52,8 +49,8 @@ int do_license(cmd_tbl_t *cmdtp, int flag, int argc, char *argv[]) return 0; } -U_BOOT_CMD(license, 1, 1, do_license, - "license - print GPL license text\n", - NULL); - -#endif /* CONFIG_CMD_LICENSE */ +U_BOOT_CMD( + license, 1, 1, do_license, + "print GPL license text", + "" +);