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>
This commit is contained in:
Daniel Stone 2018-09-21 16:59:08 +01:00
parent a65d55e133
commit bff27cb835
1 changed files with 0 additions and 5 deletions

View File

@ -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);
}
}
/**