gpu: nvgpu: fix error log message hal.mm.mmu_fault

This is a follow on patch to fix error log message in hal/mm/mmu_fault/
mmu_fault_gv11b_fusa.c.

Jira NVGPU-3805

Change-Id: I73db30f9cf5d05ea29afd2c2691f9864d06715b9
Signed-off-by: Vedashree Vidwans <vvidwans@nvidia.com>
Reviewed-on: https://git-master.nvidia.com/r/2154236
Reviewed-by: svc-mobile-coverity <svc-mobile-coverity@nvidia.com>
Reviewed-by: svc-mobile-misra <svc-mobile-misra@nvidia.com>
GVS: Gerrit_Virtual_Submit
Reviewed-by: Alex Waterman <alexw@nvidia.com>
Reviewed-by: mobile promotions <svcmobile_promotions@nvidia.com>
Tested-by: mobile promotions <svcmobile_promotions@nvidia.com>
This commit is contained in:
Vedashree Vidwans
2019-07-16 09:47:28 -07:00
committed by mobile promotions
parent 40a58a7c06
commit cb05e9fc1b

View File

@@ -545,7 +545,7 @@ void gv11b_mm_mmu_fault_handle_nonreplay_replay_fault(struct gk20a *g,
invalidate_replay_val); invalidate_replay_val);
if (err != 0) { if (err != 0) {
nvgpu_err(g, "gv11b_fb replay or cancel" nvgpu_err(g, "gv11b_fb replay or cancel"
" faults failed\n"); " faults failed");
} }
} }
} }
@@ -580,7 +580,7 @@ void gv11b_mm_mmu_fault_handle_other_fault_notify(struct gk20a *g,
invalidate_replay_val); invalidate_replay_val);
if (err != 0) { if (err != 0) {
nvgpu_err(g, "gv11b_fb replay or cancel" nvgpu_err(g, "gv11b_fb replay or cancel"
" faults failed\n"); " faults failed");
} }
} }
} }