summaryrefslogtreecommitdiffstats
path: root/drivers/gpu/nvgpu/gk20a/fifo_gk20a.c
diff options
context:
space:
mode:
Diffstat (limited to 'drivers/gpu/nvgpu/gk20a/fifo_gk20a.c')
-rw-r--r--drivers/gpu/nvgpu/gk20a/fifo_gk20a.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/drivers/gpu/nvgpu/gk20a/fifo_gk20a.c b/drivers/gpu/nvgpu/gk20a/fifo_gk20a.c
index b8b0c9b0..1e9a8e15 100644
--- a/drivers/gpu/nvgpu/gk20a/fifo_gk20a.c
+++ b/drivers/gpu/nvgpu/gk20a/fifo_gk20a.c
@@ -3963,7 +3963,7 @@ int gk20a_fifo_setup_ramfc(struct channel_gk20a *c,
3963 u32 flags) 3963 u32 flags)
3964{ 3964{
3965 struct gk20a *g = c->g; 3965 struct gk20a *g = c->g;
3966 struct mem_desc *mem = &c->inst_block; 3966 struct nvgpu_mem *mem = &c->inst_block;
3967 3967
3968 gk20a_dbg_fn(""); 3968 gk20a_dbg_fn("");
3969 3969
@@ -4097,7 +4097,7 @@ int gk20a_fifo_set_priority(struct channel_gk20a *ch, u32 priority)
4097void gk20a_fifo_setup_ramfc_for_privileged_channel(struct channel_gk20a *c) 4097void gk20a_fifo_setup_ramfc_for_privileged_channel(struct channel_gk20a *c)
4098{ 4098{
4099 struct gk20a *g = c->g; 4099 struct gk20a *g = c->g;
4100 struct mem_desc *mem = &c->inst_block; 4100 struct nvgpu_mem *mem = &c->inst_block;
4101 4101
4102 gk20a_dbg_info("channel %d : set ramfc privileged_channel", c->hw_chid); 4102 gk20a_dbg_info("channel %d : set ramfc privileged_channel", c->hw_chid);
4103 4103
@@ -4109,7 +4109,7 @@ void gk20a_fifo_setup_ramfc_for_privileged_channel(struct channel_gk20a *c)
4109int gk20a_fifo_setup_userd(struct channel_gk20a *c) 4109int gk20a_fifo_setup_userd(struct channel_gk20a *c)
4110{ 4110{
4111 struct gk20a *g = c->g; 4111 struct gk20a *g = c->g;
4112 struct mem_desc *mem = &g->fifo.userd; 4112 struct nvgpu_mem *mem = &g->fifo.userd;
4113 u32 offset = c->hw_chid * g->fifo.userd_entry_size / sizeof(u32); 4113 u32 offset = c->hw_chid * g->fifo.userd_entry_size / sizeof(u32);
4114 4114
4115 gk20a_dbg_fn(""); 4115 gk20a_dbg_fn("");