XZ: Fix missing <linux/kernel.h> include
authorLasse Collin <lasse.collin@tukaani.org>
Sun, 24 Jul 2011 16:54:25 +0000 (19:54 +0300)
committerLinus Torvalds <torvalds@linux-foundation.org>
Sun, 24 Jul 2011 17:00:08 +0000 (10:00 -0700)
<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>
Cc: stable <stable@kernel.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>

No differences found