thinkpad-acpi: drop HKEY event 0x5010
[linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git] / include / linux / leds_pwm.h
blob33a07116748910599016e6ab9f94186711ed49c4
1 /*
2 * PWM LED driver data - see drivers/leds/leds-pwm.c
3 */
4 #ifndef __LINUX_LEDS_PWM_H
5 #define __LINUX_LEDS_PWM_H
7 struct led_pwm {
8 const char *name;
9 const char *default_trigger;
10 unsigned pwm_id;
11 u8 active_low;
12 unsigned max_brightness;
13 unsigned pwm_period_ns;
16 struct led_pwm_platform_data {
17 int num_leds;
18 struct led_pwm *leds;
21 #endif