iris: drop the 48b printout, we never use anything else
authorKenneth Graunke <kenneth@whitecape.org>
Mon, 23 Apr 2018 04:31:07 +0000 (21:31 -0700)
committerKenneth Graunke <kenneth@whitecape.org>
Thu, 21 Feb 2019 18:26:06 +0000 (10:26 -0800)
src/gallium/drivers/iris/iris_batch.c

index 8acd968911fe4d9ff40707e44e21b8efbc03bed9..865ef1b4945c541ffc7751ee52b6760c34ccc006 100644 (file)
@@ -63,13 +63,12 @@ dump_validation_list(struct iris_batch *batch)
       uint64_t flags = batch->validation_list[i].flags;
       assert(batch->validation_list[i].handle ==
              batch->exec_bos[i]->gem_handle);
-      fprintf(stderr, "[%2d]: %2d %-14s %p %s%-7s @ 0x%016llx (%"PRIu64"B)\n",
+      fprintf(stderr, "[%2d]: %2d %-14s %p %-7s @ 0x%016llx (%"PRIu64"B)\n",
               i,
               batch->validation_list[i].handle,
               batch->exec_bos[i]->name,
               batch->exec_bos[i],
-              (flags & EXEC_OBJECT_SUPPORTS_48B_ADDRESS) ? "(48b" : "(32b",
-              (flags & EXEC_OBJECT_WRITE) ? " write)" : ")",
+              (flags & EXEC_OBJECT_WRITE) ? "(write)" : "",
               batch->validation_list[i].offset,
               batch->exec_bos[i]->size);
    }