lib: don't depend on linux headers being installed.
authorNeilBrown <neil@brown.name>
Sat, 29 Dec 2018 02:58:09 +0000 (13:58 +1100)
committerLinus Torvalds <torvalds@linux-foundation.org>
Sat, 29 Dec 2018 19:36:44 +0000 (11:36 -0800)
gen_crc64table requires linux include files to be installed in
/usr/include/linux.  This is a new requrement so hosts that could
previously build the kernel, now cannot.

gen_crc64table makes this requirement by including <linux/swab.h>, but
nothing from that header is actaully used.

So remove the #include, so that the linux headers no longer need to be
installed.

Fixes: feba04fd2cf8 ("lib: add crc64 calculation routines")
Signed-off-by: NeilBrown <neil@brown.name>
Acked-by: Coly Li <colyli@suse.de>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
lib/gen_crc64table.c

index 9011926e4162e576327567cf6f2217105786fa36..094b43aef8dbff2f948a0733bc4ef6395bf26bca 100644 (file)
@@ -16,8 +16,6 @@
 #include <inttypes.h>
 #include <stdio.h>
 
-#include <linux/swab.h>
-
 #define CRC64_ECMA182_POLY 0x42F0E1EBA9EA3693ULL
 
 static uint64_t crc64_table[256] = {0};