summaryrefslogtreecommitdiffstats
path: root/drivers/gpu/nvgpu/common/mm/nvgpu_allocator.c
diff options
context:
space:
mode:
Diffstat (limited to 'drivers/gpu/nvgpu/common/mm/nvgpu_allocator.c')
-rw-r--r--drivers/gpu/nvgpu/common/mm/nvgpu_allocator.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/gpu/nvgpu/common/mm/nvgpu_allocator.c b/drivers/gpu/nvgpu/common/mm/nvgpu_allocator.c
index 9c487d6d..4057a599 100644
--- a/drivers/gpu/nvgpu/common/mm/nvgpu_allocator.c
+++ b/drivers/gpu/nvgpu/common/mm/nvgpu_allocator.c
@@ -130,10 +130,10 @@ void nvgpu_alloc_destroy(struct nvgpu_allocator *a)
130} 130}
131 131
132#ifdef __KERNEL__ 132#ifdef __KERNEL__
133void nvgpu_alloc_print_stats(struct nvgpu_allocator *__a, 133void nvgpu_alloc_print_stats(struct nvgpu_allocator *na,
134 struct seq_file *s, int lock) 134 struct seq_file *s, int lock)
135{ 135{
136 __a->ops->print_stats(__a, s, lock); 136 na->ops->print_stats(na, s, lock);
137} 137}
138#endif 138#endif
139 139