Go to the documentation of this file.
8 #ifndef _LINUX_BACKLIGHT_H
9 #define _LINUX_BACKLIGHT_H
11 #include <linux/device.h>
48 #define BL_CORE_SUSPENDRESUME (1 << 0)
78 #define BL_CORE_SUSPENDED (1 << 0)
79 #define BL_CORE_FBBLANK (1 << 1)
80 #define BL_CORE_DRIVER4 (1 << 28)
81 #define BL_CORE_DRIVER3 (1 << 29)
82 #define BL_CORE_DRIVER2 (1 << 30)
83 #define BL_CORE_DRIVER1 (1 << 31)
109 if (bd->
ops && bd->
ops->update_status)
110 bd->
ops->update_status(bd);
121 #define to_backlight_device(obj) container_of(obj, struct backlight_device, dev)