diff options
author | Randy Dunlap <randy.dunlap@oracle.com> | 2010-06-22 08:13:31 +0200 |
---|---|---|
committer | Patrick McHardy <kaber@trash.net> | 2010-06-22 08:13:31 +0200 |
commit | 600069daf792f497ae1e1da74e2fff6ac5de6c47 (patch) | |
tree | 5915e93bb6877171088ab28a4f00ae50002f201e | |
parent | 26ec037f9841e49cc5c615deb8e1e73e5beab2ca (diff) |
netfilter: xt_IDLETIMER needs kdev_t.h
Add header file to fix build error:
net/netfilter/xt_IDLETIMER.c:276: error: implicit declaration of function 'MKDEV'
Signed-off-by: Randy Dunlap <randy.dunlap@oracle.com>
Signed-off-by: Patrick McHardy <kaber@trash.net>
-rw-r--r-- | net/netfilter/xt_IDLETIMER.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/net/netfilter/xt_IDLETIMER.c b/net/netfilter/xt_IDLETIMER.c index e11090a0675..be1f22e1354 100644 --- a/net/netfilter/xt_IDLETIMER.c +++ b/net/netfilter/xt_IDLETIMER.c @@ -36,6 +36,7 @@ #include <linux/netfilter.h> #include <linux/netfilter/x_tables.h> #include <linux/netfilter/xt_IDLETIMER.h> +#include <linux/kdev_t.h> #include <linux/kobject.h> #include <linux/workqueue.h> #include <linux/sysfs.h> |