]> git.kernelconcepts.de Git - karo-tx-uboot.git/blobdiff - common/cmd_license.c
pxe: make the first label the implicit default
[karo-tx-uboot.git] / common / cmd_license.c
index c6f272ad34aa0429fd4a7d917d3aec0ed0638def..70645d5ed2b065233b85635025453e7941d9bd66 100644 (file)
@@ -29,9 +29,8 @@
 #include <command.h>
 #include <malloc.h>
 #include <license.h>
-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;
@@ -50,7 +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,
+U_BOOT_CMD(
+       license, 1, 1, do_license,
        "print GPL license text",
        ""
 );