Browse Source

netfilter: add missing linux/types.h include to xt_LED.h

Pointed out by Dave Miller:

  CHECK   include/linux/netfilter (57 files)
/home/davem/src/GIT/net-2.6/usr/include/linux/netfilter/xt_LED.h:6: found __[us]{8,16,32,64} type without #include <linux/types.h>

Signed-off-by: Patrick McHardy <kaber@trash.net>
Patrick McHardy 16 years ago
parent
commit
a7ca7fccac
1 changed files with 2 additions and 0 deletions
  1. 2 0
      include/linux/netfilter/xt_LED.h

+ 2 - 0
include/linux/netfilter/xt_LED.h

@@ -1,6 +1,8 @@
 #ifndef _XT_LED_H
 #ifndef _XT_LED_H
 #define _XT_LED_H
 #define _XT_LED_H
 
 
+#include <linux/types.h>
+
 struct xt_led_info {
 struct xt_led_info {
 	char id[27];        /* Unique ID for this trigger in the LED class */
 	char id[27];        /* Unique ID for this trigger in the LED class */
 	__u8 always_blink;  /* Blink even if the LED is already on */
 	__u8 always_blink;  /* Blink even if the LED is already on */