diff options
author | Daniel Stone <daniels@collabora.com> | 2018-09-21 16:59:08 +0100 |
---|---|---|
committer | Daniel Stone <daniels@collabora.com> | 2018-09-23 11:21:40 +0200 |
commit | bff27cb835095a724161a5f50dbaadc8eb7b71da (patch) | |
tree | 0581d60e3208841f98d6787eac2f49dbb73024b6 /libweston | |
parent | a65d55e13393bd4ecb8c02caf9620b2c1bc02d29 (diff) | |
download | weston-bff27cb835095a724161a5f50dbaadc8eb7b71da.tar.gz |
compositor-drm: Don't warn about missing backlight control
Not every output will have a backlight control, and even if it does we
may just not be able to find it. Not having backlight control isn't an
error, so don't spam the log with it, as doing so can confuse users into
thinking this is an actual error which is responsible for their real
problems.
Signed-off-by: Daniel Stone <daniels@collabora.com>
Diffstat (limited to 'libweston')
-rw-r--r-- | libweston/compositor-drm.c | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/libweston/compositor-drm.c b/libweston/compositor-drm.c index bb0351ba..509f5059 100644 --- a/libweston/compositor-drm.c +++ b/libweston/compositor-drm.c @@ -4664,11 +4664,6 @@ drm_output_init_backlight(struct drm_output *output) } } } - - if (!output->base.set_backlight) { - weston_log("No backlight control for output '%s'\n", - output->base.name); - } } /** |