summaryrefslogtreecommitdiffstats
path: root/drivers/gpu/nvgpu/gv11b
diff options
context:
space:
mode:
Diffstat (limited to 'drivers/gpu/nvgpu/gv11b')
-rw-r--r--drivers/gpu/nvgpu/gv11b/gr_gv11b.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/drivers/gpu/nvgpu/gv11b/gr_gv11b.c b/drivers/gpu/nvgpu/gv11b/gr_gv11b.c
index 22377522..9d97a61f 100644
--- a/drivers/gpu/nvgpu/gv11b/gr_gv11b.c
+++ b/drivers/gpu/nvgpu/gv11b/gr_gv11b.c
@@ -2104,11 +2104,11 @@ void gr_gv11b_detect_sm_arch(struct gk20a *g)
2104{ 2104{
2105 u32 v = gk20a_readl(g, gr_gpc0_tpc0_sm_arch_r()); 2105 u32 v = gk20a_readl(g, gr_gpc0_tpc0_sm_arch_r());
2106 2106
2107 g->gpu_characteristics.sm_arch_spa_version = 2107 g->params.sm_arch_spa_version =
2108 gr_gpc0_tpc0_sm_arch_spa_version_v(v); 2108 gr_gpc0_tpc0_sm_arch_spa_version_v(v);
2109 g->gpu_characteristics.sm_arch_sm_version = 2109 g->params.sm_arch_sm_version =
2110 gr_gpc0_tpc0_sm_arch_sm_version_v(v); 2110 gr_gpc0_tpc0_sm_arch_sm_version_v(v);
2111 g->gpu_characteristics.sm_arch_warp_count = 2111 g->params.sm_arch_warp_count =
2112 gr_gpc0_tpc0_sm_arch_warp_count_v(v); 2112 gr_gpc0_tpc0_sm_arch_warp_count_v(v);
2113} 2113}
2114 2114