Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

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>

+2
+2
include/linux/netfilter/xt_LED.h
··· 1 1 #ifndef _XT_LED_H 2 2 #define _XT_LED_H 3 3 4 + #include <linux/types.h> 5 + 4 6 struct xt_led_info { 5 7 char id[27]; /* Unique ID for this trigger in the LED class */ 6 8 __u8 always_blink; /* Blink even if the LED is already on */