blob: 36b73d3856ffb87efb162841f9c2f782b805a7ab (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#ifndef __LINUX_LM3528_BACKLIGHT_H
#define __LINUX_LM3528_BACKLIGHT_H
#include <linux/backlight.h>
struct lm3528_platform_data {
unsigned int dft_brightness;
bool (*is_powered)(void);
int (*notify)(struct device *dev, int brightness);
};
#endif
|