diff options
author | Patrick McHardy <kaber@trash.net> | 2009-05-05 08:31:12 -0400 |
---|---|---|
committer | Patrick McHardy <kaber@trash.net> | 2009-05-05 08:31:12 -0400 |
commit | a7ca7fccacc029958fd09985e7f3529b90ec791d (patch) | |
tree | 40158ef0b9b4fa26a9cf31888ecd0f071c7f8aeb | |
parent | 37e55cf0ceb8803256bf69a3e45bd668bf90b76f (diff) |
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>
-rw-r--r-- | include/linux/netfilter/xt_LED.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/include/linux/netfilter/xt_LED.h b/include/linux/netfilter/xt_LED.h index 4c91a0d770d0..f5509e7524d3 100644 --- a/include/linux/netfilter/xt_LED.h +++ b/include/linux/netfilter/xt_LED.h | |||
@@ -1,6 +1,8 @@ | |||
1 | #ifndef _XT_LED_H | 1 | #ifndef _XT_LED_H |
2 | #define _XT_LED_H | 2 | #define _XT_LED_H |
3 | 3 | ||
4 | #include <linux/types.h> | ||
5 | |||
4 | struct xt_led_info { | 6 | struct xt_led_info { |
5 | char id[27]; /* Unique ID for this trigger in the LED class */ | 7 | char id[27]; /* Unique ID for this trigger in the LED class */ |
6 | __u8 always_blink; /* Blink even if the LED is already on */ | 8 | __u8 always_blink; /* Blink even if the LED is already on */ |