diff options
author | Nicolai Hähnle <[email protected]> | 2016-05-08 19:20:57 -0500 |
---|---|---|
committer | Nicolai Hähnle <[email protected]> | 2016-05-13 01:03:39 -0500 |
commit | a694c20ecf10fd266d27b8d216794dfa5e19f633 (patch) | |
tree | bc65f76b091103a56041f0e8186b882f273ae1f6 /src/gallium/drivers/radeonsi/sid_tables.py | |
parent | c7f73a70f042c24adf57188b2fe5c8c6a6aa8980 (diff) |
radeonsi/sid_tables: rename reg_table to sid_reg_table
This is purely cosmetic, making it easier to assign blame for space used
in the binary in case somebody else makes a similar cleanup effort in the
future.
Reviewed-by: Marek Olšák <[email protected]>
Reviewed-by: Bas Nieuwenhuizen <[email protected]>
Diffstat (limited to 'src/gallium/drivers/radeonsi/sid_tables.py')
-rwxr-xr-x | src/gallium/drivers/radeonsi/sid_tables.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gallium/drivers/radeonsi/sid_tables.py b/src/gallium/drivers/radeonsi/sid_tables.py index 0ca24ae5ffa..7ba021544b0 100755 --- a/src/gallium/drivers/radeonsi/sid_tables.py +++ b/src/gallium/drivers/radeonsi/sid_tables.py @@ -262,7 +262,7 @@ struct si_packet3 { print '};' print - print 'static const struct si_reg reg_table[] = {' + print 'static const struct si_reg sid_reg_table[] = {' for reg in regs: if len(reg.fields): print '\t{%s, %s, %s, %s},' % (strings.add(reg.name), reg.r_name, |