From: Hauke Mehrtens Date: Sat, 6 Jun 2015 20:07:23 +0000 (+0200) Subject: rhashtable: add missing import X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=6d7954130c8d7100b7aba3c986fc4eefedf1a1ad;p=linux-beck.git rhashtable: add missing import rhashtable uses EXPORT_SYMBOL_GPL() without importing linux/export.h directly it is only imported indirectly through some other includes. Signed-off-by: Hauke Mehrtens Signed-off-by: David S. Miller --- diff --git a/lib/rhashtable.c b/lib/rhashtable.c index 4396434e4715..8609378e6505 100644 --- a/lib/rhashtable.c +++ b/lib/rhashtable.c @@ -26,6 +26,7 @@ #include #include #include +#include #define HASH_DEFAULT_SIZE 64UL #define HASH_MIN_SIZE 4U