diff options
author | Chris Wilson <chris@chris-wilson.co.uk> | 2015-11-19 10:37:42 +0000 |
---|---|---|
committer | Chris Wilson <chris@chris-wilson.co.uk> | 2015-11-19 10:37:42 +0000 |
commit | 3cdc1780e3fbd789c40487fed4fb2272002784ab (patch) | |
tree | 446148c35725e0b749940fb001f9709eb782da9b /src/intel_options.c | |
parent | 666f25baf00ac3f04096655c4022ec7a2d17247b (diff) |
Rename Option "NoAccel" to "Accel"
Totally cribbed from xf86-video-amdgpu/-radeon:
commit 560b7fe6dc66405762020f00e9a05918a36f3a17
Author: Michel Dänzer <michel.daenzer@amd.com>
Date: Wed Nov 11 17:31:34 2015 +0900
Rename Option "NoAccel" to "Accel"
Renaming the option removes the need for a double negation when forcing
acceleration on and is backwards compatible as the option parser
automagically handles the 'No' prefix.
Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
Diffstat (limited to 'src/intel_options.c')
-rw-r--r-- | src/intel_options.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/intel_options.c b/src/intel_options.c index d19736bf..7f253ac1 100644 --- a/src/intel_options.c +++ b/src/intel_options.c @@ -9,7 +9,7 @@ #include "intel_options.h" const OptionInfoRec intel_options[] = { - {OPTION_ACCEL_DISABLE, "NoAccel", OPTV_BOOLEAN, {0}, 0}, + {OPTION_ACCEL_ENABLE, "Accel", OPTV_BOOLEAN, {0}, 0}, {OPTION_ACCEL_METHOD, "AccelMethod", OPTV_STRING, {0}, 0}, {OPTION_BACKLIGHT, "Backlight", OPTV_STRING, {0}, 0}, {OPTION_EDID, "CustomEDID", OPTV_STRING, {0}, 0}, |