summaryrefslogtreecommitdiffstats
path: root/drivers/gpu/nvgpu/gv100/gr_gv100.c
diff options
context:
space:
mode:
Diffstat (limited to 'drivers/gpu/nvgpu/gv100/gr_gv100.c')
-rw-r--r--drivers/gpu/nvgpu/gv100/gr_gv100.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/drivers/gpu/nvgpu/gv100/gr_gv100.c b/drivers/gpu/nvgpu/gv100/gr_gv100.c
index 13092f2a..79526947 100644
--- a/drivers/gpu/nvgpu/gv100/gr_gv100.c
+++ b/drivers/gpu/nvgpu/gv100/gr_gv100.c
@@ -37,7 +37,6 @@
37#include <nvgpu/hw/gv100/hw_gr_gv100.h> 37#include <nvgpu/hw/gv100/hw_gr_gv100.h>
38#include <nvgpu/hw/gv100/hw_fb_gv100.h> 38#include <nvgpu/hw/gv100/hw_fb_gv100.h>
39#include <nvgpu/hw/gv100/hw_proj_gv100.h> 39#include <nvgpu/hw/gv100/hw_proj_gv100.h>
40#include <nvgpu/hw/gv100/hw_fuse_gv100.h>
41#include <nvgpu/hw/gv100/hw_top_gv100.h> 40#include <nvgpu/hw/gv100/hw_top_gv100.h>
42#include <nvgpu/hw/gv100/hw_ctxsw_prog_gv100.h> 41#include <nvgpu/hw/gv100/hw_ctxsw_prog_gv100.h>
43#include <nvgpu/hw/gv100/hw_perf_gv100.h> 42#include <nvgpu/hw/gv100/hw_perf_gv100.h>
@@ -391,7 +390,7 @@ static u32 gr_gv100_get_active_fpba_mask(struct gk20a *g)
391 * flip the bits. 390 * flip the bits.
392 * Also set unused bits to zero 391 * Also set unused bits to zero
393 */ 392 */
394 active_fbpa_mask = nvgpu_readl(g, fuse_status_opt_fbio_r()); 393 active_fbpa_mask = g->ops.fuse.fuse_status_opt_fbio(g);
395 active_fbpa_mask = ~active_fbpa_mask; 394 active_fbpa_mask = ~active_fbpa_mask;
396 active_fbpa_mask = active_fbpa_mask & ((1 << num_fbpas) - 1); 395 active_fbpa_mask = active_fbpa_mask & ((1 << num_fbpas) - 1);
397 396