summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChris Wilson <chris@chris-wilson.co.uk>2011-07-02 09:53:11 +0100
committerChris Wilson <chris@chris-wilson.co.uk>2011-07-02 09:53:11 +0100
commit98f2e3855d70c02b05e2721a70ebce0c17e44283 (patch)
tree38500463a60987f138d16e14a414242d54d0558e
parent01c258718e981f4da949a4e48595a0660d55d66e (diff)
sna/video: Downgrade severity of "overlay not found" message
We don't need to warn the user that their hardware does not support the video overlay plane (but Jesse is working on it!), but merely inform them that its presence is lacking. Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
-rw-r--r--src/sna/sna_video_overlay.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/sna/sna_video_overlay.c b/src/sna/sna_video_overlay.c
index 422ce53d..a20c1112 100644
--- a/src/sna/sna_video_overlay.c
+++ b/src/sna/sna_video_overlay.c
@@ -632,7 +632,7 @@ XF86VideoAdaptorPtr sna_video_overlay_setup(struct sna *sna,
XF86AttributePtr att;
if (!sna_has_overlay(sna)) {
- xf86DrvMsg(sna->scrn->scrnIndex, X_WARNING,
+ xf86DrvMsg(sna->scrn->scrnIndex, X_INFO,
"Overlay video not supported on this hardware\n");
return NULL;
}