summaryrefslogtreecommitdiffstats
path: root/drivers/gpu/nvgpu/pmgr/pwrdev.c
diff options
context:
space:
mode:
Diffstat (limited to 'drivers/gpu/nvgpu/pmgr/pwrdev.c')
-rw-r--r--drivers/gpu/nvgpu/pmgr/pwrdev.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/drivers/gpu/nvgpu/pmgr/pwrdev.c b/drivers/gpu/nvgpu/pmgr/pwrdev.c
index 0f87ad26..e32dfc40 100644
--- a/drivers/gpu/nvgpu/pmgr/pwrdev.c
+++ b/drivers/gpu/nvgpu/pmgr/pwrdev.c
@@ -54,7 +54,7 @@ static u32 _pwr_domains_pmudatainit_ina3221(struct gk20a *g,
54 54
55 status = boardobj_pmudatainit_super(g, board_obj_ptr, ppmudata); 55 status = boardobj_pmudatainit_super(g, board_obj_ptr, ppmudata);
56 if (status) { 56 if (status) {
57 gk20a_err(dev_from_gk20a(g), 57 nvgpu_err(g,
58 "error updating pmu boardobjgrp for pwr domain 0x%x", 58 "error updating pmu boardobjgrp for pwr domain 0x%x",
59 status); 59 status);
60 goto done; 60 goto done;
@@ -252,7 +252,7 @@ static u32 devinit_get_pwr_device_table(struct gk20a *g,
252 pwr_device_size, pwr_device_data.boardobj.type); 252 pwr_device_size, pwr_device_data.boardobj.type);
253 253
254 if (!boardobj) { 254 if (!boardobj) {
255 gk20a_err(dev_from_gk20a(g), 255 nvgpu_err(g,
256 "unable to create pwr device for %d type %d", index, pwr_device_data.boardobj.type); 256 "unable to create pwr device for %d type %d", index, pwr_device_data.boardobj.type);
257 status = -EINVAL; 257 status = -EINVAL;
258 goto done; 258 goto done;
@@ -262,7 +262,7 @@ static u32 devinit_get_pwr_device_table(struct gk20a *g,
262 boardobj, obj_index); 262 boardobj, obj_index);
263 263
264 if (status) { 264 if (status) {
265 gk20a_err(dev_from_gk20a(g), 265 nvgpu_err(g,
266 "unable to insert pwr device boardobj for %d", index); 266 "unable to insert pwr device boardobj for %d", index);
267 status = -EINVAL; 267 status = -EINVAL;
268 goto done; 268 goto done;
@@ -285,7 +285,7 @@ u32 pmgr_device_sw_setup(struct gk20a *g)
285 /* Construct the Super Class and override the Interfaces */ 285 /* Construct the Super Class and override the Interfaces */
286 status = boardobjgrpconstruct_e32(&g->pmgr_pmu.pmgr_deviceobjs.super); 286 status = boardobjgrpconstruct_e32(&g->pmgr_pmu.pmgr_deviceobjs.super);
287 if (status) { 287 if (status) {
288 gk20a_err(dev_from_gk20a(g), 288 nvgpu_err(g,
289 "error creating boardobjgrp for pmgr devices, status - 0x%x", 289 "error creating boardobjgrp for pmgr devices, status - 0x%x",
290 status); 290 status);
291 goto done; 291 goto done;