From cec9fc6f6cffce186606f39982d0d78ff7c63bbf Mon Sep 17 00:00:00 2001 From: Jesse Barnes Date: Tue, 30 Jun 2009 12:27:59 -0700 Subject: [PATCH] Make KMS set_resource function return TRUE This is what's expected by the server, and allows the EDID for example to be exported in the KMS case. Signed-off-by: Jesse Barnes --- src/drmmode_display.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/drmmode_display.c b/src/drmmode_display.c index f45d9337..d5904ad5 100644 --- a/src/drmmode_display.c +++ b/src/drmmode_display.c @@ -892,8 +892,8 @@ drmmode_output_set_property(xf86OutputPtr output, Atom property, } } } - /* no property found? */ - return FALSE; + + return TRUE; } static const xf86OutputFuncsRec drmmode_output_funcs = {