OSDN Git Service

XZ: Fix missing <linux/kernel.h> include
authorLasse Collin <lasse.collin@tukaani.org>
Sun, 24 Jul 2011 16:54:25 +0000 (19:54 +0300)
committerGreg Kroah-Hartman <gregkh@suse.de>
Fri, 5 Aug 2011 04:58:38 +0000 (21:58 -0700)
commit 81d67439855a7f928d90965d832aa4f2fb677342 upstream.

<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: Lasse Collin <lasse.collin@tukaani.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
lib/xz/xz_private.h

index a65633e..482b90f 100644 (file)
@@ -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