radeonsi: remove redundant parameter in si_shader_binary_read
authorMarek Olšák <marek.olsak@amd.com>
Fri, 10 Jul 2015 21:29:04 +0000 (23:29 +0200)
committerMarek Olšák <marek.olsak@amd.com>
Wed, 22 Jul 2015 22:59:23 +0000 (00:59 +0200)
Reviewed-by: Tom Stellard <thomas.stellard@amd.com>
Reviewed-by: Michel Dänzer <michel.daenzer@amd.com>
src/gallium/drivers/radeonsi/si_compute.c
src/gallium/drivers/radeonsi/si_shader.c
src/gallium/drivers/radeonsi/si_shader.h

index 89bef2e..0361c99 100644 (file)
@@ -144,7 +144,7 @@ static void *si_create_compute_state(
         * the shader code to the GPU.
         */
        init_scratch_buffer(sctx, program);
-       si_shader_binary_read(sctx->screen, &program->shader, &program->shader.binary);
+       si_shader_binary_read(sctx->screen, &program->shader);
 
 #endif
        program->input_buffer = si_resource_create_custom(sctx->b.b.screen,
index 75a29ae..b988f6d 100644 (file)
@@ -2686,11 +2686,9 @@ void si_shader_apply_scratch_relocs(struct si_context *sctx,
        }
 }
 
-int si_shader_binary_read(struct si_screen *sscreen,
-                       struct si_shader *shader,
-                       const struct radeon_shader_binary *binary)
+int si_shader_binary_read(struct si_screen *sscreen, struct si_shader *shader)
 {
-
+       const struct radeon_shader_binary *binary = &shader->binary;
        unsigned i;
        unsigned code_size;
        unsigned char *ptr;
@@ -2750,7 +2748,7 @@ int si_compile_llvm(struct si_screen *sscreen, struct si_shader *shader,
        if (r) {
                return r;
        }
-       r = si_shader_binary_read(sscreen, shader, &shader->binary);
+       r = si_shader_binary_read(sscreen, shader);
 
        FREE(shader->binary.config);
        FREE(shader->binary.rodata);
index 8d309b4..1e8b52b 100644 (file)
@@ -191,8 +191,7 @@ int si_compile_llvm(struct si_screen *sscreen, struct si_shader *shader,
                    LLVMTargetMachineRef tm, LLVMModuleRef mod);
 void si_shader_destroy(struct pipe_context *ctx, struct si_shader *shader);
 unsigned si_shader_io_get_unique_index(unsigned semantic_name, unsigned index);
-int si_shader_binary_read(struct si_screen *sscreen, struct si_shader *shader,
-               const struct radeon_shader_binary *binary);
+int si_shader_binary_read(struct si_screen *sscreen, struct si_shader *shader);
 void si_shader_apply_scratch_relocs(struct si_context *sctx,
                        struct si_shader *shader,
                        uint64_t scratch_va);