summaryrefslogtreecommitdiffstats
path: root/drivers/gpu/nvgpu/gp10b/fifo_gp10b.c
diff options
context:
space:
mode:
authorAlex Waterman <alexw@nvidia.com>2017-03-21 15:55:35 -0400
committermobile promotions <svcmobile_promotions@nvidia.com>2017-04-06 21:14:53 -0400
commitc9665079d7b12f22a847c62587724b4ee120ca6e (patch)
tree7882bd08193db4c34b3b8ad7df7013339da2fba1 /drivers/gpu/nvgpu/gp10b/fifo_gp10b.c
parentb69020bff5dfa69cad926c9374cdbe9a62509ffd (diff)
gpu: nvgpu: rename mem_desc to nvgpu_mem
Renaming was done with the following command: $ find -type f | \ xargs sed -i 's/struct mem_desc/struct nvgpu_mem/g' Also rename mem_desc.[ch] to nvgpu_mem.[ch]. JIRA NVGPU-12 Change-Id: I69395758c22a56aa01e3dffbcded70a729bf559a Signed-off-by: Alex Waterman <alexw@nvidia.com> Reviewed-on: http://git-master/r/1325547 Reviewed-by: mobile promotions <svcmobile_promotions@nvidia.com> Tested-by: mobile promotions <svcmobile_promotions@nvidia.com>
Diffstat (limited to 'drivers/gpu/nvgpu/gp10b/fifo_gp10b.c')
-rw-r--r--drivers/gpu/nvgpu/gp10b/fifo_gp10b.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/gpu/nvgpu/gp10b/fifo_gp10b.c b/drivers/gpu/nvgpu/gp10b/fifo_gp10b.c
index 3787662b..a7e77232 100644
--- a/drivers/gpu/nvgpu/gp10b/fifo_gp10b.c
+++ b/drivers/gpu/nvgpu/gp10b/fifo_gp10b.c
@@ -27,7 +27,7 @@
27#include <nvgpu/hw/gp10b/hw_top_gp10b.h> 27#include <nvgpu/hw/gp10b/hw_top_gp10b.h>
28 28
29static void gp10b_set_pdb_fault_replay_flags(struct gk20a *g, 29static void gp10b_set_pdb_fault_replay_flags(struct gk20a *g,
30 struct mem_desc *mem) 30 struct nvgpu_mem *mem)
31{ 31{
32 u32 val; 32 u32 val;
33 33
@@ -83,7 +83,7 @@ static int channel_gp10b_setup_ramfc(struct channel_gk20a *c,
83 unsigned long acquire_timeout, u32 flags) 83 unsigned long acquire_timeout, u32 flags)
84{ 84{
85 struct gk20a *g = c->g; 85 struct gk20a *g = c->g;
86 struct mem_desc *mem = &c->inst_block; 86 struct nvgpu_mem *mem = &c->inst_block;
87 87
88 gk20a_dbg_fn(""); 88 gk20a_dbg_fn("");
89 89