summaryrefslogtreecommitdiff
path: root/src/i830.h
diff options
context:
space:
mode:
authorZhenyu Wang <zhenyu.z.wang@intel.com>2007-12-19 22:47:02 +0800
committerZhenyu Wang <zhenyu.z.wang@intel.com>2007-12-19 22:47:02 +0800
commit73827e78357ab3f30a21f159ecdfb26dd0ea889b (patch)
tree5c95582b2e962cbc46f2a15f62dfc665a495abcd /src/i830.h
parent3cf862717688aa679b5e667cd041ddd6f5db0b58 (diff)
parentf69b48fe24ef94dac44b8123884ca71df675be4b (diff)
Merge branch 'master' into xvmc
Diffstat (limited to 'src/i830.h')
-rw-r--r--src/i830.h18
1 files changed, 9 insertions, 9 deletions
diff --git a/src/i830.h b/src/i830.h
index 2fa3bed2..3d105bdc 100644
--- a/src/i830.h
+++ b/src/i830.h
@@ -321,29 +321,29 @@ enum last_3d {
* so they can choose an ideal one for their platform (assuming our quirk
* code picks the wrong one).
*
- * Four different methods are available:
- * NATIVE: only ever touch the native backlight control registers
+ * Four different backlight control methods are available:
+ * BCM_NATIVE: only ever touch the native backlight control registers
* This method may be susceptible to problem (2) above if the firmware
* modifies the legacy registers.
- * LEGACY: only ever touch the legacy backlight control registers
+ * BCM_LEGACY: only ever touch the legacy backlight control registers
* This method may be susceptible to problem (1) above if the firmware
* also modifies the legacy registers.
- * COMBO: try to use both sets
+ * BCM_COMBO: try to use both sets
* In this case, the driver will try to modify both sets of registers
* if needed. To avoid problem (2) above it may set the LBB register
* to a non-zero value if the brightness is to be increased. It's still
* susceptible to problem (1), but to a lesser extent than the LEGACY only
* method.
- * KERNEL: use kernel methods for controlling the backlight
+ * BCM_KERNEL: use kernel methods for controlling the backlight
* This is only available on some platforms, but where present this can
* provide the best user experience.
*/
enum backlight_control {
- NATIVE = 0,
- LEGACY,
- COMBO,
- KERNEL,
+ BCM_NATIVE = 0,
+ BCM_LEGACY,
+ BCM_COMBO,
+ BCM_KERNEL,
};
typedef struct _I830Rec {