summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJesse Barnes <jbarnes@virtuousgeek.org>2009-06-30 12:27:59 -0700
committerJesse Barnes <jbarnes@virtuousgeek.org>2009-06-30 12:27:59 -0700
commitcec9fc6f6cffce186606f39982d0d78ff7c63bbf (patch)
tree9931b62c9ad2a483fe6fdd958ba52d6f7985bf2c
parent53e248af4365232416d2143a791a07c6751f8319 (diff)
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 <jbarnes@virtuousgeek.org>
-rw-r--r--src/drmmode_display.c4
1 files 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 = {