cmd: fitupd: move config check to Kconfig
[oweals/u-boot.git] / cmd / lzmadec.c
index 1ad9ed6ce96a5c37f32b2eb2f702cfc1787232bb..3b8db0a8538584f7520392e600f85d9af8809e97 100644 (file)
@@ -1,3 +1,4 @@
+// SPDX-License-Identifier: GPL-2.0+
 /*
  * (C) Copyright 2013 Patrice Bouchand <pbfwdlist_gmail_com>
  * lzma uncompress command in Uboot
@@ -6,21 +7,21 @@
  *
  * (C) Copyright 2000
  * Wolfgang Denk, DENX Software Engineering, wd@denx.de.
- *
- * SPDX-License-Identifier:    GPL-2.0+
  */
 
 #include <common.h>
 #include <command.h>
+#include <env.h>
 #include <mapmem.h>
 #include <asm/io.h>
 
 #include <lzma/LzmaTools.h>
 
-static int do_lzmadec(cmd_tbl_t *cmdtp, int flag, int argc, char *const argv[])
+static int do_lzmadec(struct cmd_tbl *cmdtp, int flag, int argc,
+                     char *const argv[])
 {
        unsigned long src, dst;
-       unsigned long src_len = ~0UL, dst_len = ~0UL;
+       SizeT src_len = ~0UL, dst_len = ~0UL;
        int ret;
 
        switch (argc) {
@@ -40,8 +41,9 @@ static int do_lzmadec(cmd_tbl_t *cmdtp, int flag, int argc, char *const argv[])
 
        if (ret != SZ_OK)
                return 1;
-       printf("Uncompressed size: %ld = 0x%lX\n", src_len, src_len);
-       setenv_hex("filesize", src_len);
+       printf("Uncompressed size: %ld = %#lX\n", (ulong)src_len,
+              (ulong)src_len);
+       env_set_hex("filesize", src_len);
 
        return 0;
 }