https://github.com/torvalds/linux
Raw File
Tip revision: cfbf8d4857c26a8a307fb7cd258074c9dcd8c691 authored by Linus Torvalds on 24 February 2014, 01:40:03 UTC
Linux 3.14-rc4
Tip revision: cfbf8d4
leds_pwm.h
/*
 * 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
back to top