From cb943418bf9e2c7c77d8d2eb55167e7bdb1afb77 Mon Sep 17 00:00:00 2001 From: Heinrich Schuchardt <xypron.glpk@gmx.de> Date: Mon, 29 Apr 2019 08:04:36 +0200 Subject: lib/vsprintf: remove #include <uuid.h> from vsprintf.c common.h already includes uuid.h Signed-off-by: Heinrich Schuchardt <xypron.glpk@gmx.de> --- lib/vsprintf.c | 1 - 1 file changed, 1 deletion(-) (limited to 'lib') diff --git a/lib/vsprintf.c b/lib/vsprintf.c index 2403825dc9..3502b8088f 100644 --- a/lib/vsprintf.c +++ b/lib/vsprintf.c @@ -16,7 +16,6 @@ #include <efi_loader.h> #include <div64.h> #include <hexdump.h> -#include <uuid.h> #include <stdarg.h> #include <linux/ctype.h> #include <linux/err.h> -- cgit From 5132361ad4ae940270422d8ab4a1d1a37a6e9b7d Mon Sep 17 00:00:00 2001 From: Heiko Schocher <hs@denx.de> Date: Mon, 29 Apr 2019 08:59:38 +0200 Subject: lib: Kconfig: fix help text for GZIP commit 95f4bbd581cf ("lib: fdt: Allow LZO and GZIP DT compression in U-Boot") introduced Kconfig option for gzip in U-Boot, but help text says gzip for SPL, which is wrong. Fix this. Signed-off-by: Heiko Schocher <hs@denx.de> Acked-by: Marek Vasut <marex@denx.de> --- lib/Kconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'lib') diff --git a/lib/Kconfig b/lib/Kconfig index 05f82d4a50..38012506d2 100644 --- a/lib/Kconfig +++ b/lib/Kconfig @@ -359,7 +359,7 @@ config LZO This enables support for LZO compression algorithm.r config GZIP - bool "Enable gzip decompression support for SPL build" + bool "Enable gzip decompression support" select ZLIB default y help -- cgit