summaryrefslogtreecommitdiffstats
path: root/drivers/gpu/nvgpu/therm
diff options
context:
space:
mode:
authorThomas Fleury <tfleury@nvidia.com>2017-10-23 18:52:00 -0400
committermobile promotions <svcmobile_promotions@nvidia.com>2017-11-06 16:40:59 -0500
commit13093eff52d0ef9071bb09cade01ea064c99468d (patch)
tree3fb71377826a4280fbfdee74957fbae06417bcf9 /drivers/gpu/nvgpu/therm
parent8bdce5337ee5f4d1e1f6d4c7b2dc0abe4a532893 (diff)
gpu: nvgpu: add g cross reference in boardobjgrp
Added a pointer to GPU context in boardobjgrp, and updated constructors. It will be useful to free allocated DMA resources. JIRA EVLR-1959 Bug 200352099 Change-Id: I006e4f970c9a2525dabdfd6ad417be64e36b7b68 Signed-off-by: Thomas Fleury <tfleury@nvidia.com> Reviewed-on: https://git-master.nvidia.com/r/1586551 Reviewed-by: mobile promotions <svcmobile_promotions@nvidia.com> Tested-by: mobile promotions <svcmobile_promotions@nvidia.com>
Diffstat (limited to 'drivers/gpu/nvgpu/therm')
-rw-r--r--drivers/gpu/nvgpu/therm/thrmchannel.c3
-rw-r--r--drivers/gpu/nvgpu/therm/thrmdev.c3
2 files changed, 4 insertions, 2 deletions
diff --git a/drivers/gpu/nvgpu/therm/thrmchannel.c b/drivers/gpu/nvgpu/therm/thrmchannel.c
index dd2f7cb3..f8be8430 100644
--- a/drivers/gpu/nvgpu/therm/thrmchannel.c
+++ b/drivers/gpu/nvgpu/therm/thrmchannel.c
@@ -217,7 +217,8 @@ u32 therm_channel_sw_setup(struct gk20a *g)
217 struct therm_channels *pthermchannelobjs; 217 struct therm_channels *pthermchannelobjs;
218 218
219 /* Construct the Super Class and override the Interfaces */ 219 /* Construct the Super Class and override the Interfaces */
220 status = boardobjgrpconstruct_e32(&g->therm_pmu.therm_channelobjs.super); 220 status = boardobjgrpconstruct_e32(g,
221 &g->therm_pmu.therm_channelobjs.super);
221 if (status) { 222 if (status) {
222 nvgpu_err(g, 223 nvgpu_err(g,
223 "error creating boardobjgrp for therm devices, status - 0x%x", 224 "error creating boardobjgrp for therm devices, status - 0x%x",
diff --git a/drivers/gpu/nvgpu/therm/thrmdev.c b/drivers/gpu/nvgpu/therm/thrmdev.c
index 5c416e50..1aff119c 100644
--- a/drivers/gpu/nvgpu/therm/thrmdev.c
+++ b/drivers/gpu/nvgpu/therm/thrmdev.c
@@ -164,7 +164,8 @@ u32 therm_device_sw_setup(struct gk20a *g)
164 struct therm_devices *pthermdeviceobjs; 164 struct therm_devices *pthermdeviceobjs;
165 165
166 /* Construct the Super Class and override the Interfaces */ 166 /* Construct the Super Class and override the Interfaces */
167 status = boardobjgrpconstruct_e32(&g->therm_pmu.therm_deviceobjs.super); 167 status = boardobjgrpconstruct_e32(g,
168 &g->therm_pmu.therm_deviceobjs.super);
168 if (status) { 169 if (status) {
169 nvgpu_err(g, 170 nvgpu_err(g,
170 "error creating boardobjgrp for therm devices, status - 0x%x", 171 "error creating boardobjgrp for therm devices, status - 0x%x",