From d9e125be12b00a78ffb7fc39f303979d5cc0f893 Mon Sep 17 00:00:00 2001 From: Zhenyu Wang Date: Fri, 6 Feb 2009 23:51:47 +0800 Subject: [PATCH] TV: config TV_FORMAT property as non-pending As we'll try to refresh modelines in case TV_FORMAT property change, so config it as non-pending as immediately after request. --- src/i830_tv.c | 5 +++-- 1 files changed, 3 insertions(+), 2 deletions(-) diff --git a/src/i830_tv.c b/src/i830_tv.c index 72d2bd8..7e7204c 100644 --- a/src/i830_tv.c +++ b/src/i830_tv.c @@ -1501,7 +1501,7 @@ i830_tv_format_set_property (xf86OutputPtr output) err = RRChangeOutputProperty (output->randr_output, tv_format_atom, XA_ATOM, 32, PropModeReplace, 1, &tv_format_name_atoms[tv_mode - tv_modes], - FALSE, TRUE); + FALSE, FALSE); return err == Success; } @@ -1529,7 +1529,8 @@ i830_tv_format_configure_property (xf86OutputPtr output) current_atoms[num_atoms++] = tv_format_name_atoms[i]; return RRConfigureOutputProperty(output->randr_output, tv_format_atom, - TRUE, FALSE, FALSE, + FALSE, /* not pending */ + FALSE, FALSE, num_atoms, (INT32 *) current_atoms); } -- 1.5.6.5