M7350/kernel/include/linux/platform_data/leds-kirkwood-ns2.h

25 lines
529 B
C
Raw Normal View History

2024-09-09 08:52:07 +00:00
/*
* Platform data structure for Network Space v2 LED driver
*
* This file is licensed under the terms of the GNU General Public
* License version 2. This program is licensed "as is" without any
* warranty of any kind, whether express or implied.
*/
2024-09-09 08:57:42 +00:00
#ifndef __LEDS_KIRKWOOD_NS2_H
#define __LEDS_KIRKWOOD_NS2_H
2024-09-09 08:52:07 +00:00
struct ns2_led {
const char *name;
const char *default_trigger;
unsigned cmd;
unsigned slow;
};
struct ns2_led_platform_data {
int num_leds;
struct ns2_led *leds;
};
2024-09-09 08:57:42 +00:00
#endif /* __LEDS_KIRKWOOD_NS2_H */