Blame view

include/linux/leds_pwm.h 355 Bytes
41c42ff5d   Luotao Fu   leds: simple driv...
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
  /*
   * 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;
  	u8 		active_low;
  	unsigned 	max_brightness;
  	unsigned	pwm_period_ns;
  };
  
  struct led_pwm_platform_data {
  	int			num_leds;
  	struct led_pwm	*leds;
  };
  
  #endif