cregit-Linux how code gets into the kernel

Release 4.7 include/linux/leds_pwm.h

Directory: include/linux
/*
 * 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

Overall Contributors

PersonTokensPropCommitsCommitProp
luotao fuluotao fu4998.00%150.00%
peter ujfalusipeter ujfalusi12.00%150.00%
Total50100.00%2100.00%
Directory: include/linux
Information contained on this website is for historical information purposes only and does not indicate or represent copyright ownership.
{% endraw %}