summaryrefslogtreecommitdiffstats
path: root/drivers
diff options
context:
space:
mode:
Diffstat (limited to 'drivers')
-rw-r--r--drivers/gpu/nvgpu/gv11b/pmu_gv11b.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/drivers/gpu/nvgpu/gv11b/pmu_gv11b.c b/drivers/gpu/nvgpu/gv11b/pmu_gv11b.c
index 0b0144ce..62e42c31 100644
--- a/drivers/gpu/nvgpu/gv11b/pmu_gv11b.c
+++ b/drivers/gpu/nvgpu/gv11b/pmu_gv11b.c
@@ -21,7 +21,13 @@
21#include "pmu_gv11b.h" 21#include "pmu_gv11b.h"
22#include "hw_pwr_gv11b.h" 22#include "hw_pwr_gv11b.h"
23 23
24static bool gv11b_is_pmu_supported(struct gk20a *g)
25{
26 return false;
27}
28
24void gv11b_init_pmu_ops(struct gpu_ops *gops) 29void gv11b_init_pmu_ops(struct gpu_ops *gops)
25{ 30{
26 gp10b_init_pmu_ops(gops); 31 gp10b_init_pmu_ops(gops);
32 gops->pmu.is_pmu_supported = gv11b_is_pmu_supported;
27} 33}