vc4: Fix mixup of return type in reloc_tex().
authorEric Anholt <eric@anholt.net>
Tue, 28 Oct 2014 23:24:28 +0000 (16:24 -0700)
committerEric Anholt <eric@anholt.net>
Wed, 29 Oct 2014 00:15:36 +0000 (17:15 -0700)
src/gallium/drivers/vc4/kernel/vc4_validate.c

index 67bc5f7..977e071 100644 (file)
@@ -778,14 +778,14 @@ reloc_tex(struct exec_info *exec,
                if ((p3 & (3 << 30)) == (1 << 30)) {
                        if (cube_map_stride) {
                                DRM_ERROR("Cube map stride set twice\n");
-                               return -EINVAL;
+                               return false;
                        }
 
                        cube_map_stride = p3 & 0x3ffff000;
                }
                if (!cube_map_stride) {
                        DRM_ERROR("Cube map stride not set\n");
-                       return -EINVAL;
+                       return false;
                }
        }