gpu: nvgpu: Remove variable that's only ever set

Remove a variable that is only set but never used. Necessary
for userspace builds to compile.

JIRA NVGPU-525

Change-Id: Ie2f8f90e002a09f089a96a270c264ea1815445ad
Signed-off-by: Alex Waterman <alexw@nvidia.com>
Reviewed-on: https://git-master.nvidia.com/r/1760666
Reviewed-by: svc-mobile-coverity <svc-mobile-coverity@nvidia.com>
Reviewed-by: Konsta Holtta <kholtta@nvidia.com>
Reviewed-by: Terje Bergstrom <tbergstrom@nvidia.com>
This commit is contained in:
Alex Waterman
2018-06-25 07:52:21 -07:00
parent bc0d8a65c1
commit 2d397e34a5

View File

@@ -986,7 +986,6 @@ static void gv11b_fifo_locked_abort_runlist_active_tsgs(struct gk20a *g,
unsigned int rc_type,
u32 runlists_mask)
{
bool verbose = false;
struct tsg_gk20a *tsg = NULL;
u32 rlid, tsgid;
struct fifo_runlist_info_gk20a *runlist = NULL;
@@ -1025,7 +1024,7 @@ static void gv11b_fifo_locked_abort_runlist_active_tsgs(struct gk20a *g,
if (!g->fifo.deferred_reset_pending) {
if (rc_type == RC_TYPE_MMU_FAULT) {
gk20a_fifo_set_ctx_mmu_error_tsg(g, tsg);
verbose = gk20a_fifo_error_tsg(g, tsg);
gk20a_fifo_error_tsg(g, tsg);
}
}