nlm: Ensure callback code also checks that the files match
[GitHub/mt8127/android_kernel_alcatel_ttab.git] / include / linux / leds_pwm.h
1 /*
2 * PWM LED driver data - see drivers/leds/leds-pwm.c
3 */
4 #ifndef __LINUX_LEDS_PWM_H
5 #define __LINUX_LEDS_PWM_H
6
7 struct led_pwm {
8 const char *name;
9 const char *default_trigger;
10 unsigned pwm_id __deprecated;
11 u8 active_low;
12 unsigned max_brightness;
13 unsigned pwm_period_ns;
14 };
15
16 struct led_pwm_platform_data {
17 int num_leds;
18 struct led_pwm *leds;
19 };
20
21 #endif