xf86-video-intel: src/sna/sna_io.c

Chris Wilson ickle at kemper.freedesktop.org
Sun Oct 7 16:14:25 PDT 2012


 src/sna/sna_io.c |    4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

New commits:
commit bed64c998df538046d77eeea90598f48077dab5f
Author: Chris Wilson <chris at chris-wilson.co.uk>
Date:   Mon Oct 8 00:13:03 2012 +0100

    sna: Fix check_reloc_and_exec typo
    
    Garbage xorg includes hiding genuine compiler warnings ftl once again.
    
    Signed-off-by: Chris Wilson <chris at chris-wilson.co.uk>

diff --git a/src/sna/sna_io.c b/src/sna/sna_io.c
index 367bfde..69d920c 100644
--- a/src/sna/sna_io.c
+++ b/src/sna/sna_io.c
@@ -379,7 +379,7 @@ fallback:
 	}
 
 	kgem_set_mode(kgem, KGEM_BLT);
-	if (!kgem_check_exec_and_reloc(kgem, 2) ||
+	if (!kgem_check_reloc_and_exec(kgem, 2) ||
 	    !kgem_check_batch(kgem, 8) ||
 	    !kgem_check_many_bo_fenced(kgem, dst_bo, src_bo, NULL)) {
 		_kgem_submit(kgem);
@@ -1172,7 +1172,7 @@ tile:
 	}
 
 	kgem_set_mode(kgem, KGEM_BLT);
-	if (!kgem_check_exec_and_reloc(kgem, 2) ||
+	if (!kgem_check_reloc_and_exec(kgem, 2) ||
 	    !kgem_check_batch(kgem, 8) ||
 	    !kgem_check_bo_fenced(kgem, dst_bo)) {
 		_kgem_submit(kgem);


More information about the xorg-commit mailing list