mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-11-11 21:38:32 +08:00
leds: Add suspend/resume state flags to leds-gpio
Add an option to preserve LED state when suspending/resuming to the LED gpio driver. Based on a suggestion from Robert Jarzmik. Tested-by: Robert Jarzmik <robert.jarzmik@free.fr> Signed-off-by: Richard Purdie <rpurdie@linux.intel.com>
This commit is contained in:
parent
41c42ff5db
commit
defb512d25
@ -93,7 +93,8 @@ static int __devinit create_gpio_led(const struct gpio_led *template,
|
||||
}
|
||||
led_dat->cdev.brightness_set = gpio_led_set;
|
||||
led_dat->cdev.brightness = LED_OFF;
|
||||
led_dat->cdev.flags |= LED_CORE_SUSPENDRESUME;
|
||||
if (!template->retain_state_suspended)
|
||||
led_dat->cdev.flags |= LED_CORE_SUSPENDRESUME;
|
||||
|
||||
ret = gpio_direction_output(led_dat->gpio, led_dat->active_low);
|
||||
if (ret < 0)
|
||||
|
@ -141,7 +141,8 @@ struct gpio_led {
|
||||
const char *name;
|
||||
const char *default_trigger;
|
||||
unsigned gpio;
|
||||
u8 active_low;
|
||||
u8 active_low : 1;
|
||||
u8 retain_state_suspended : 1;
|
||||
};
|
||||
|
||||
struct gpio_led_platform_data {
|
||||
|
Loading…
Reference in New Issue
Block a user