summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--drivers/gpu/nvgpu/gp106/ltc_gp106.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/drivers/gpu/nvgpu/gp106/ltc_gp106.c b/drivers/gpu/nvgpu/gp106/ltc_gp106.c
index ef0e351d..dcd4fbad 100644
--- a/drivers/gpu/nvgpu/gp106/ltc_gp106.c
+++ b/drivers/gpu/nvgpu/gp106/ltc_gp106.c
@@ -14,6 +14,7 @@
14#include <linux/types.h> 14#include <linux/types.h>
15 15
16#include "gk20a/gk20a.h" 16#include "gk20a/gk20a.h"
17#include "gm20b/ltc_gm20b.h"
17#include "gp10b/ltc_gp10b.h" 18#include "gp10b/ltc_gp10b.h"
18 19
19void gp106_init_ltc(struct gpu_ops *gops) 20void gp106_init_ltc(struct gpu_ops *gops)
@@ -23,4 +24,5 @@ void gp106_init_ltc(struct gpu_ops *gops)
23 /* dGPU does not need the LTC hack */ 24 /* dGPU does not need the LTC hack */
24 gops->ltc.cbc_fix_config = NULL; 25 gops->ltc.cbc_fix_config = NULL;
25 gops->ltc.init_cbc = NULL; 26 gops->ltc.init_cbc = NULL;
27 gops->ltc.init_fs_state = gm20b_ltc_init_fs_state;
26} 28}