summaryrefslogtreecommitdiffstats
path: root/drivers/gpu/drm/amd/amdgpu/gfx_v8_0.c
diff options
context:
space:
mode:
authorTom St Denis2015-12-03 18:23:28 +0100
committerAlex Deucher2015-12-04 17:26:52 +0100
commiteb64526f5a5a382df7018a3e69061b9e3f20e32d (patch)
tree36cd918b1a8efa056d483882f272510957879b2b /drivers/gpu/drm/amd/amdgpu/gfx_v8_0.c
parentdrm/amdgpu: fix race condition in amd_sched_entity_push_job (diff)
downloadkernel-qcow2-linux-eb64526f5a5a382df7018a3e69061b9e3f20e32d.tar.gz
kernel-qcow2-linux-eb64526f5a5a382df7018a3e69061b9e3f20e32d.tar.xz
kernel-qcow2-linux-eb64526f5a5a382df7018a3e69061b9e3f20e32d.zip
amdgpu/gfxv8: Remove magic numbers from function gfx_v8_0_tiling_mode_table_init()
Signed-off-by: Tom St Denis <tom.stdenis@amd.com> Reviewed-by: Alex Deucher <alexander.deucher@amd.com>
Diffstat (limited to 'drivers/gpu/drm/amd/amdgpu/gfx_v8_0.c')
-rw-r--r--drivers/gpu/drm/amd/amdgpu/gfx_v8_0.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/gpu/drm/amd/amdgpu/gfx_v8_0.c b/drivers/gpu/drm/amd/amdgpu/gfx_v8_0.c
index 33e3c0d63c66..29e02e0fa3d4 100644
--- a/drivers/gpu/drm/amd/amdgpu/gfx_v8_0.c
+++ b/drivers/gpu/drm/amd/amdgpu/gfx_v8_0.c
@@ -1640,8 +1640,8 @@ static int gfx_v8_0_sw_fini(void *handle)
static void gfx_v8_0_tiling_mode_table_init(struct amdgpu_device *adev)
{
uint32_t *modearray, *mod2array;
- const u32 num_tile_mode_states = 32;
- const u32 num_secondary_tile_mode_states = 16;
+ const u32 num_tile_mode_states = ARRAY_SIZE(adev->gfx.config.tile_mode_array);
+ const u32 num_secondary_tile_mode_states = ARRAY_SIZE(adev->gfx.config.macrotile_mode_array);
u32 reg_offset;
modearray = adev->gfx.config.tile_mode_array;