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_dvo.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_dvo.c')
-rw-r--r-- | src/i830_dvo.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/i830_dvo.c b/src/i830_dvo.c index d938f466..629e9c7d 100644 --- a/src/i830_dvo.c +++ b/src/i830_dvo.c @@ -31,6 +31,7 @@ USE OR OTHER DEALINGS IN THE SOFTWARE. #include "xf86.h" #include "i830.h" +#include "i830_display.h" #include "i810_reg.h" #include "sil164/sil164.h" @@ -226,7 +227,9 @@ static const xf86OutputFuncsRec i830_dvo_output_funcs = { .restore = i830_dvo_restore, .mode_valid = i830_dvo_mode_valid, .mode_fixup = i830_dvo_mode_fixup, + .prepare = i830_output_prepare, .mode_set = i830_dvo_mode_set, + .commit = i830_output_commit, .detect = i830_dvo_detect, .get_modes = i830_ddc_get_modes, .destroy = i830_dvo_destroy |