From 33133a1d38a4dce60d2e135663b545895fc85abc Mon Sep 17 00:00:00 2001 From: Chris Wilson Date: Sun, 17 Oct 2010 09:21:06 +0100 Subject: [PATCH] display: do not report failure for setting unrecognised properties We need to accept any changes to properties not handled by ourselves -- we can't validate the changes ourselves. Denying those changes breaks EDID reporting, for example. Reported-by: Elvis Pranskevichus Signed-off-by: Chris Wilson --- src/intel_display.c | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/src/intel_display.c b/src/intel_display.c index 74ce7362..d32224ec 100644 --- a/src/intel_display.c +++ b/src/intel_display.c @@ -1161,7 +1161,11 @@ intel_output_set_property(xf86OutputPtr output, Atom property, } } - return FALSE; + /* We didn't recognise this property, just report success in order + * to allow the set to continue, otherwise we break setting of + * common properties like EDID. + */ + return TRUE; } static Bool