summaryrefslogtreecommitdiffstats
path: root/drivers/gpu/nvgpu/common/linux/nvgpu_mem.c
diff options
context:
space:
mode:
Diffstat (limited to 'drivers/gpu/nvgpu/common/linux/nvgpu_mem.c')
-rw-r--r--drivers/gpu/nvgpu/common/linux/nvgpu_mem.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/drivers/gpu/nvgpu/common/linux/nvgpu_mem.c b/drivers/gpu/nvgpu/common/linux/nvgpu_mem.c
index e1f8a598..8740ac3d 100644
--- a/drivers/gpu/nvgpu/common/linux/nvgpu_mem.c
+++ b/drivers/gpu/nvgpu/common/linux/nvgpu_mem.c
@@ -25,6 +25,7 @@
25#include <nvgpu/vidmem.h> 25#include <nvgpu/vidmem.h>
26 26
27#include <nvgpu/linux/dma.h> 27#include <nvgpu/linux/dma.h>
28#include <nvgpu/linux/vidmem.h>
28 29
29#include "os_linux.h" 30#include "os_linux.h"
30 31
@@ -355,7 +356,7 @@ u64 nvgpu_mem_get_addr(struct gk20a *g, struct nvgpu_mem *mem)
355 /* 356 /*
356 * Otherwise get the vidmem address. 357 * Otherwise get the vidmem address.
357 */ 358 */
358 alloc = nvgpu_vidmem_get_page_alloc(mem->priv.sgt->sgl); 359 alloc = mem->vidmem_alloc;
359 360
360 /* This API should not be used with > 1 chunks */ 361 /* This API should not be used with > 1 chunks */
361 WARN_ON(alloc->nr_chunks != 1); 362 WARN_ON(alloc->nr_chunks != 1);