xf86-video-intel: src/intel_memory.c

Chris Wilson ickle at kemper.freedesktop.org
Wed Nov 3 12:46:52 PDT 2010


 src/intel_memory.c |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit 52b32436b9e14a3e13818f80102150ff5bc3c002
Author: Chris Wilson <chris at chris-wilson.co.uk>
Date:   Wed Nov 3 19:42:26 2010 +0000

    Downgrade tiling allocation failure to a warning
    
    We emitted this message as an error even though we fallback and attempt
    to allocate a non-tiled framebuffer before failing (with an appropriate
    error message).
    
    Signed-off-by: Chris Wilson <chris at chris-wilson.co.uk>

diff --git a/src/intel_memory.c b/src/intel_memory.c
index 4daf036..e9ea58d 100644
--- a/src/intel_memory.c
+++ b/src/intel_memory.c
@@ -232,7 +232,7 @@ retry:
 	}
 
 	if (intel->tiling && tiling_mode != I915_TILING_X) {
-		xf86DrvMsg(scrn->scrnIndex, X_ERROR,
+		xf86DrvMsg(scrn->scrnIndex, X_WARNING,
 			   "Failed to set tiling on frontbuffer.\n");
 	}
 


More information about the xorg-commit mailing list