radeonsi: fix a comment typo in si_fine_fence_set
authorMarek Olšák <marek.olsak@amd.com>
Wed, 30 Jan 2019 19:31:48 +0000 (14:31 -0500)
committerMarek Olšák <marek.olsak@amd.com>
Wed, 30 Jan 2019 19:32:05 +0000 (14:32 -0500)
src/gallium/drivers/radeonsi/si_fence.c

index 78da742..3d23597 100644 (file)
@@ -251,7 +251,7 @@ static void si_fine_fence_set(struct si_context *ctx,
 
        assert(util_bitcount(flags & (PIPE_FLUSH_TOP_OF_PIPE | PIPE_FLUSH_BOTTOM_OF_PIPE)) == 1);
 
-       /* Use uncached system memory for the fence. */
+       /* Use cached system memory for the fence. */
        u_upload_alloc(ctx->cached_gtt_allocator, 0, 4, 4,
                       &fine->offset, (struct pipe_resource **)&fine->buf, (void **)&fence_ptr);
        if (!fine->buf)