diff options
author | Timothy Arceri <[email protected]> | 2017-02-27 11:06:51 +1100 |
---|---|---|
committer | Timothy Arceri <[email protected]> | 2017-02-28 13:20:31 +1100 |
commit | dc4c551a345dc399e589382cd859812ea0d5bbae (patch) | |
tree | 25d76e412c3124de430b4d3f8a4c80992e9aba85 /src/gallium/drivers/radeonsi/si_debug.c | |
parent | 69a687189e0381d0ff8c2f079698b8adfbb0a7b1 (diff) |
radeon/ac: switch from radeon_elf_read() to ac_elf_read()
Reviewed-by: Marek Olšák <[email protected]>
Diffstat (limited to 'src/gallium/drivers/radeonsi/si_debug.c')
-rw-r--r-- | src/gallium/drivers/radeonsi/si_debug.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/gallium/drivers/radeonsi/si_debug.c b/src/gallium/drivers/radeonsi/si_debug.c index f04b8fa155e..1092aa2761a 100644 --- a/src/gallium/drivers/radeonsi/si_debug.c +++ b/src/gallium/drivers/radeonsi/si_debug.c @@ -27,7 +27,6 @@ #include "si_pipe.h" #include "sid.h" #include "sid_tables.h" -#include "radeon/radeon_elf_util.h" #include "ddebug/dd_util.h" #include "util/u_memory.h" #include "ac_debug.h" @@ -126,7 +125,7 @@ bool si_replace_shader(unsigned num, struct ac_shader_binary *binary) if (nread != filesize) goto file_error; - radeon_elf_read(buf, filesize, binary); + ac_elf_read(buf, filesize, binary); replaced = true; out_close: |