Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 81d67439 authored by Lasse Collin's avatar Lasse Collin Committed by Linus Torvalds
Browse files

XZ: Fix missing <linux/kernel.h> include



<linux/kernel.h> is needed for min_t. The old version
happened to work on x86 because <asm/unaligned.h>
indirectly includes <linux/kernel.h>, but it didn't
work on ARM.

<linux/kernel.h> includes <asm/byteorder.h> so it's
not necessary to include it explicitly anymore.

Signed-off-by: default avatarLasse Collin <lasse.collin@tukaani.org>
Cc: stable <stable@kernel.org>
Signed-off-by: default avatarLinus Torvalds <torvalds@linux-foundation.org>
parent 21c7075f
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -12,7 +12,7 @@

#ifdef __KERNEL__
#	include <linux/xz.h>
#	include <asm/byteorder.h>
#	include <linux/kernel.h>
#	include <asm/unaligned.h>
	/* XZ_PREBOOT may be defined only via decompress_unxz.c. */
#	ifndef XZ_PREBOOT