1/* SPDX-License-Identifier: GPL-2.0 WITH Linux-syscall-note */
2#ifndef _XT_LED_H
3#define _XT_LED_H
4
5#include <linux/types.h>
6
7struct xt_led_info {
8	char id[27];        /* Unique ID for this trigger in the LED class */
9	__u8 always_blink;  /* Blink even if the LED is already on */
10	__u32 delay;        /* Delay until LED is switched off after trigger */
11
12	/* Kernel data used in the module */
13	void *internal_data __attribute__((aligned(8)));
14};
15
16#endif /* _XT_LED_H */
17