summaryrefslogtreecommitdiffstats
path: root/drivers/gpu/nvgpu/lpwr/lpwr.c
diff options
context:
space:
mode:
Diffstat (limited to 'drivers/gpu/nvgpu/lpwr/lpwr.c')
-rw-r--r--drivers/gpu/nvgpu/lpwr/lpwr.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/drivers/gpu/nvgpu/lpwr/lpwr.c b/drivers/gpu/nvgpu/lpwr/lpwr.c
index b722a900..9ff7c2a7 100644
--- a/drivers/gpu/nvgpu/lpwr/lpwr.c
+++ b/drivers/gpu/nvgpu/lpwr/lpwr.c
@@ -201,7 +201,7 @@ static void nvgpu_pmu_handle_param_lpwr_msg(struct gk20a *g,
201 gk20a_dbg_fn(""); 201 gk20a_dbg_fn("");
202 202
203 if (status != 0) { 203 if (status != 0) {
204 gk20a_err(dev_from_gk20a(g), "LWPR PARAM cmd aborted"); 204 nvgpu_err(g, "LWPR PARAM cmd aborted");
205 return; 205 return;
206 } 206 }
207 207
@@ -252,7 +252,7 @@ int nvgpu_lwpr_mclk_change(struct gk20a *g, u32 pstate)
252 &ack_status, 1); 252 &ack_status, 1);
253 if (ack_status == 0) { 253 if (ack_status == 0) {
254 status = -EINVAL; 254 status = -EINVAL;
255 gk20a_err(dev_from_gk20a(g), "MCLK-CHANGE ACK failed"); 255 nvgpu_err(g, "MCLK-CHANGE ACK failed");
256 } 256 }
257 } 257 }
258 258
@@ -285,7 +285,7 @@ u32 nvgpu_lpwr_post_init(struct gk20a *g)
285 &ack_status, 1); 285 &ack_status, 1);
286 if (ack_status == 0) { 286 if (ack_status == 0) {
287 status = -EINVAL; 287 status = -EINVAL;
288 gk20a_err(dev_from_gk20a(g), "post-init ack failed"); 288 nvgpu_err(g, "post-init ack failed");
289 } 289 }
290 290
291 return status; 291 return status;