mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git
synced 2024-11-01 17:08:10 +00:00
9ea6cdac9b
Update the driver to use the new API for requesting pwm so we can take advantage of the pwm_lookup table to find the correct pwm to be used for the LED functionality. Signed-off-by: Peter Ujfalusi <peter.ujfalusi@ti.com> Signed-off-by: Bryan Wu <cooloney@gmail.com>
21 lines
368 B
C
21 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
|