summaryrefslogtreecommitdiffstats
path: root/drivers/gpu/nvgpu/gk20a/channel_gk20a.c
diff options
context:
space:
mode:
Diffstat (limited to 'drivers/gpu/nvgpu/gk20a/channel_gk20a.c')
-rw-r--r--drivers/gpu/nvgpu/gk20a/channel_gk20a.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/gpu/nvgpu/gk20a/channel_gk20a.c b/drivers/gpu/nvgpu/gk20a/channel_gk20a.c
index b6543dca..3fe119d7 100644
--- a/drivers/gpu/nvgpu/gk20a/channel_gk20a.c
+++ b/drivers/gpu/nvgpu/gk20a/channel_gk20a.c
@@ -141,7 +141,7 @@ int gk20a_channel_get_timescale_from_timeslice(struct gk20a *g,
141 141
142 /* time slice register is only 18bits long */ 142 /* time slice register is only 18bits long */
143 if ((value << shift) >= 1<<19) { 143 if ((value << shift) >= 1<<19) {
144 pr_err("Requested timeslice value is clamped to 18 bits\n"); 144 nvgpu_err(g, "Requested timeslice value is clamped to 18 bits\n");
145 value = 255; 145 value = 255;
146 shift = 10; 146 shift = 10;
147 } 147 }