summaryrefslogtreecommitdiffstats
path: root/drivers/gpu/nvgpu/gk20a/gk20a.h
diff options
context:
space:
mode:
authorDeepak Nibade <dnibade@nvidia.com>2017-10-30 09:53:17 -0400
committermobile promotions <svcmobile_promotions@nvidia.com>2017-11-02 08:10:59 -0400
commit0aa4cea63b906401df1bece74cef4a566054cf59 (patch)
tree3e44c0e472d4872d4b47c201a657e11149042540 /drivers/gpu/nvgpu/gk20a/gk20a.h
parent00b255cf43a2f85d4d9a0378c4a85e7a20e6adc8 (diff)
gpu: nvgpu: use struct gk20a for create_gr_sysfs
API gr_gp10b_create_sysfs() and GR HAL create_gr_sysfs() right now receive linux specific struct device But since this function is called from/declared in common code, we need to remove linux dependency from it Hence update the API and GR HAL to receive struct gk20a pointer instead of device pointer Jira NVGPU-259 Change-Id: I7effa16407d47a2ab5f9562ec4a4dec975a32d6c Signed-off-by: Deepak Nibade <dnibade@nvidia.com> Reviewed-on: https://git-master.nvidia.com/r/1588464 Reviewed-by: mobile promotions <svcmobile_promotions@nvidia.com> Tested-by: mobile promotions <svcmobile_promotions@nvidia.com>
Diffstat (limited to 'drivers/gpu/nvgpu/gk20a/gk20a.h')
-rw-r--r--drivers/gpu/nvgpu/gk20a/gk20a.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/gpu/nvgpu/gk20a/gk20a.h b/drivers/gpu/nvgpu/gk20a/gk20a.h
index 20e0450e..7e7d9688 100644
--- a/drivers/gpu/nvgpu/gk20a/gk20a.h
+++ b/drivers/gpu/nvgpu/gk20a/gk20a.h
@@ -356,7 +356,7 @@ struct gpu_ops {
356 u32 gpc_exception); 356 u32 gpc_exception);
357 void (*enable_gpc_exceptions)(struct gk20a *g); 357 void (*enable_gpc_exceptions)(struct gk20a *g);
358 void (*enable_exceptions)(struct gk20a *g); 358 void (*enable_exceptions)(struct gk20a *g);
359 void (*create_gr_sysfs)(struct device *dev); 359 void (*create_gr_sysfs)(struct gk20a *g);
360 u32 (*get_lrf_tex_ltc_dram_override)(struct gk20a *g); 360 u32 (*get_lrf_tex_ltc_dram_override)(struct gk20a *g);
361 int (*record_sm_error_state)(struct gk20a *g, 361 int (*record_sm_error_state)(struct gk20a *g,
362 u32 gpc, u32 tpc); 362 u32 gpc, u32 tpc);