2008-04-14 08:35:08 +00:00
|
|
|
/*
|
|
|
|
* Generic PWM backlight driver data - see drivers/video/backlight/pwm_bl.c
|
|
|
|
*/
|
|
|
|
#ifndef __LINUX_PWM_BACKLIGHT_H
|
|
|
|
#define __LINUX_PWM_BACKLIGHT_H
|
|
|
|
|
|
|
|
struct platform_pwm_backlight_data {
|
|
|
|
int pwm_id;
|
|
|
|
unsigned int max_brightness;
|
|
|
|
unsigned int dft_brightness;
|
2010-11-11 22:05:28 +00:00
|
|
|
unsigned int lth_brightness;
|
2008-04-14 08:35:08 +00:00
|
|
|
unsigned int pwm_period_ns;
|
2008-05-22 13:18:40 +00:00
|
|
|
int (*init)(struct device *dev);
|
2009-11-10 17:20:40 +00:00
|
|
|
int (*notify)(struct device *dev, int brightness);
|
2008-05-22 13:18:40 +00:00
|
|
|
void (*exit)(struct device *dev);
|
2008-04-14 08:35:08 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|