blob: a766ffdc2d30fce23c1fb1e83cf0d9256981fe8b (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
|
/* Public domain. */
#ifndef _LINUX_BACKLIGHT_H
#define _LINUX_BACKLIGHT_H
#include <sys/task.h>
struct backlight_device;
struct backlight_properties {
int type;
int max_brightness;
int brightness;
int power;
};
struct backlight_ops {
int (*update_status)(struct backlight_device *);
int (*get_brightness)(struct backlight_device *);
};
struct backlight_device {
const struct backlight_ops *ops;
struct backlight_properties props;
struct task task;
void *data;
};
#define bl_get_data(bd) (bd)->data
#define BACKLIGHT_RAW 0
#define BACKLIGHT_FIRMWARE 1
struct backlight_device *backlight_device_register(const char *, void *,
void *, const struct backlight_ops *, struct backlight_properties *);
void backlight_device_unregister(struct backlight_device *);
static inline void
backlight_update_status(struct backlight_device *bd)
{
bd->ops->update_status(bd);
}
void backlight_schedule_update_status(struct backlight_device *);
#endif
|