git: https://android.googlesource.com/kernel/common branch: android-4.9 commit: 03fcc2fe71308c2d164b4e6cbfc738c63e670444
22 lines
368 B
C
22 lines
368 B
C
/*
|
|
* PWM LED driver data - see drivers/leds/leds-pwm.c
|
|
*/
|
|
#ifndef __LINUX_LEDS_PWM_H
|
|
#define __LINUX_LEDS_PWM_H
|
|
|
|
struct led_pwm {
|
|
const char *name;
|
|
const char *default_trigger;
|
|
unsigned pwm_id __deprecated;
|
|
u8 active_low;
|
|
unsigned max_brightness;
|
|
unsigned pwm_period_ns;
|
|
};
|
|
|
|
struct led_pwm_platform_data {
|
|
int num_leds;
|
|
struct led_pwm *leds;
|
|
};
|
|
|
|
#endif
|