summaryrefslogtreecommitdiffstats
path: root/drivers/gpu/nvgpu/gp10b
diff options
context:
space:
mode:
Diffstat (limited to 'drivers/gpu/nvgpu/gp10b')
-rw-r--r--drivers/gpu/nvgpu/gp10b/fuse_gp10b.c2
-rw-r--r--drivers/gpu/nvgpu/gp10b/priv_ring_gp10b.c2
-rw-r--r--drivers/gpu/nvgpu/gp10b/therm_gp10b.c6
3 files changed, 4 insertions, 6 deletions
diff --git a/drivers/gpu/nvgpu/gp10b/fuse_gp10b.c b/drivers/gpu/nvgpu/gp10b/fuse_gp10b.c
index 7743c5df..c1fc6be7 100644
--- a/drivers/gpu/nvgpu/gp10b/fuse_gp10b.c
+++ b/drivers/gpu/nvgpu/gp10b/fuse_gp10b.c
@@ -30,6 +30,8 @@
30 30
31#include "gm20b/fuse_gm20b.h" 31#include "gm20b/fuse_gm20b.h"
32 32
33#include "fuse_gp10b.h"
34
33#include <nvgpu/hw/gp10b/hw_fuse_gp10b.h> 35#include <nvgpu/hw/gp10b/hw_fuse_gp10b.h>
34 36
35int gp10b_fuse_check_priv_security(struct gk20a *g) 37int gp10b_fuse_check_priv_security(struct gk20a *g)
diff --git a/drivers/gpu/nvgpu/gp10b/priv_ring_gp10b.c b/drivers/gpu/nvgpu/gp10b/priv_ring_gp10b.c
index 1a73ab0d..b9e4cace 100644
--- a/drivers/gpu/nvgpu/gp10b/priv_ring_gp10b.c
+++ b/drivers/gpu/nvgpu/gp10b/priv_ring_gp10b.c
@@ -33,6 +33,8 @@
33#include <nvgpu/hw/gp10b/hw_pri_ringstation_sys_gp10b.h> 33#include <nvgpu/hw/gp10b/hw_pri_ringstation_sys_gp10b.h>
34#include <nvgpu/hw/gp10b/hw_pri_ringstation_gpc_gp10b.h> 34#include <nvgpu/hw/gp10b/hw_pri_ringstation_gpc_gp10b.h>
35 35
36#include "priv_ring_gp10b.h"
37
36static const char * const invalid_str = "invalid"; 38static const char * const invalid_str = "invalid";
37 39
38static const char *const error_type_badf1xyy[] = { 40static const char *const error_type_badf1xyy[] = {
diff --git a/drivers/gpu/nvgpu/gp10b/therm_gp10b.c b/drivers/gpu/nvgpu/gp10b/therm_gp10b.c
index e02259d8..c69bd0bb 100644
--- a/drivers/gpu/nvgpu/gp10b/therm_gp10b.c
+++ b/drivers/gpu/nvgpu/gp10b/therm_gp10b.c
@@ -133,9 +133,3 @@ int gp10b_elcg_init_idle_filters(struct gk20a *g)
133 gk20a_dbg_fn("done"); 133 gk20a_dbg_fn("done");
134 return 0; 134 return 0;
135} 135}
136
137void gp10b_init_therm_ops(struct gpu_ops *gops)
138{
139 gops->therm.init_therm_setup_hw = gp10b_init_therm_setup_hw;
140 gops->therm.elcg_init_idle_filters = gp10b_elcg_init_idle_filters;
141}