]> Git Repo - u-boot.git/blobdiff - lib/gunzip.c
lib: enable lzma decompression support for SPL build
[u-boot.git] / lib / gunzip.c
index adb86c755036fa9be8bf13b2717b5f6d21295868..9e6ccd692a39d43607eaf5afbd62bc95765d9e69 100644 (file)
@@ -1,19 +1,20 @@
+// SPDX-License-Identifier: GPL-2.0+
 /*
  * (C) Copyright 2000-2006
  * Wolfgang Denk, DENX Software Engineering, [email protected].
- *
- * SPDX-License-Identifier:    GPL-2.0+
  */
 
 #include <common.h>
-#include <watchdog.h>
 #include <command.h>
 #include <console.h>
+#include <div64.h>
+#include <gzip.h>
 #include <image.h>
 #include <malloc.h>
 #include <memalign.h>
+#include <u-boot/crc.h>
+#include <watchdog.h>
 #include <u-boot/zlib.h>
-#include <div64.h>
 
 #define HEADER0                        '\x1f'
 #define HEADER1                        '\x8b'
This page took 0.026054 seconds and 4 git commands to generate.