summaryrefslogtreecommitdiffstats
path: root/drivers/gpu/nvgpu/vgpu/gm20b/vgpu_gr_gm20b.c
diff options
context:
space:
mode:
Diffstat (limited to 'drivers/gpu/nvgpu/vgpu/gm20b/vgpu_gr_gm20b.c')
-rw-r--r--drivers/gpu/nvgpu/vgpu/gm20b/vgpu_gr_gm20b.c9
1 files changed, 2 insertions, 7 deletions
diff --git a/drivers/gpu/nvgpu/vgpu/gm20b/vgpu_gr_gm20b.c b/drivers/gpu/nvgpu/vgpu/gm20b/vgpu_gr_gm20b.c
index 0acafa8e..06962a86 100644
--- a/drivers/gpu/nvgpu/vgpu/gm20b/vgpu_gr_gm20b.c
+++ b/drivers/gpu/nvgpu/vgpu/gm20b/vgpu_gr_gm20b.c
@@ -1,5 +1,5 @@
1/* 1/*
2 * Copyright (c) 2015-2016, NVIDIA CORPORATION. All rights reserved. 2 * Copyright (c) 2015-2017, NVIDIA CORPORATION. All rights reserved.
3 * 3 *
4 * Permission is hereby granted, free of charge, to any person obtaining a 4 * Permission is hereby granted, free of charge, to any person obtaining a
5 * copy of this software and associated documentation files (the "Software"), 5 * copy of this software and associated documentation files (the "Software"),
@@ -23,7 +23,7 @@
23#include "gk20a/gk20a.h" 23#include "gk20a/gk20a.h"
24#include "vgpu_gr_gm20b.h" 24#include "vgpu_gr_gm20b.h"
25 25
26static int vgpu_gm20b_init_fs_state(struct gk20a *g) 26int vgpu_gm20b_init_fs_state(struct gk20a *g)
27{ 27{
28 struct gr_gk20a *gr = &g->gr; 28 struct gr_gk20a *gr = &g->gr;
29 u32 tpc_index, gpc_index; 29 u32 tpc_index, gpc_index;
@@ -44,8 +44,3 @@ static int vgpu_gm20b_init_fs_state(struct gk20a *g)
44 gr->no_of_sm = sm_id; 44 gr->no_of_sm = sm_id;
45 return 0; 45 return 0;
46} 46}
47
48void vgpu_gm20b_init_gr_ops(struct gpu_ops *gops)
49{
50 gops->gr.init_fs_state = vgpu_gm20b_init_fs_state;
51}