summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--drivers/gpu/nvgpu/gk20a/fifo_gk20a.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/drivers/gpu/nvgpu/gk20a/fifo_gk20a.c b/drivers/gpu/nvgpu/gk20a/fifo_gk20a.c
index 58a4180f..76995406 100644
--- a/drivers/gpu/nvgpu/gk20a/fifo_gk20a.c
+++ b/drivers/gpu/nvgpu/gk20a/fifo_gk20a.c
@@ -1947,10 +1947,9 @@ int gk20a_fifo_tsg_unbind_channel_verify_status(struct channel_gk20a *ch)
1947 struct gk20a *g = ch->g; 1947 struct gk20a *g = ch->g;
1948 1948
1949 if (gk20a_fifo_channel_status_is_next(g, ch->chid)) { 1949 if (gk20a_fifo_channel_status_is_next(g, ch->chid)) {
1950 nvgpu_log(g, gpu_dbg_info, 1950 nvgpu_err(g, "Channel %d to be removed from TSG %d has NEXT set!",
1951 "Channel %d to be removed from TSG %d has NEXT set!",
1952 ch->chid, ch->tsgid); 1951 ch->chid, ch->tsgid);
1953 return 0; 1952 return -EINVAL;
1954 } 1953 }
1955 1954
1956 if (g->ops.fifo.tsg_verify_status_ctx_reload) 1955 if (g->ops.fifo.tsg_verify_status_ctx_reload)