1
0
Fork 0

rhashtable: add missing import <linux/export.h>

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 <hauke@hauke-m.de>
Signed-off-by: David S. Miller <davem@davemloft.net>
hifive-unleashed-5.1
Hauke Mehrtens 2015-06-06 22:07:23 +02:00 committed by David S. Miller
parent c6271b7633
commit 6d7954130c
1 changed files with 1 additions and 0 deletions

View File

@ -26,6 +26,7 @@
#include <linux/random.h>
#include <linux/rhashtable.h>
#include <linux/err.h>
#include <linux/export.h>
#define HASH_DEFAULT_SIZE 64UL
#define HASH_MIN_SIZE 4U