2008-04-14 12:35:08 +04: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;
|
|
|
|
unsigned int pwm_period_ns;
|
2008-05-22 17:18:40 +04:00
|
|
|
int (*init)(struct device *dev);
|
|
|
|
int (*notify)(int brightness);
|
|
|
|
void (*exit)(struct device *dev);
|
2008-04-14 12:35:08 +04:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|