diff options
author | Keith Packard <keithp@neko.keithp.com> | 2007-03-04 19:35:44 -0800 |
---|---|---|
committer | Keith Packard <keithp@neko.keithp.com> | 2007-03-04 19:36:32 -0800 |
commit | bc20b54c34088356a277beaebcc90bb4a7063e19 (patch) | |
tree | b02e0d865795198c7f79f660a4cf5a67fc3034dc /src/i830_crt.c | |
parent | b27fa2c257ccc49c6f29a20a3e672ebaaf58e7aa (diff) |
Support new CRTC/Output prepare/commit hooks.
New hooks replace explicit invocation of DPMS functions to manage mode
setting sequencing.
Diffstat (limited to 'src/i830_crt.c')
-rw-r--r-- | src/i830_crt.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/i830_crt.c b/src/i830_crt.c index 77061653..fbb4adc5 100644 --- a/src/i830_crt.c +++ b/src/i830_crt.c @@ -341,7 +341,9 @@ static const xf86OutputFuncsRec i830_crt_output_funcs = { .restore = i830_crt_restore, .mode_valid = i830_crt_mode_valid, .mode_fixup = i830_crt_mode_fixup, + .prepare = i830_output_prepare, .mode_set = i830_crt_mode_set, + .commit = i830_output_commit, .detect = i830_crt_detect, .get_modes = i830_ddc_get_modes, .destroy = i830_crt_destroy |