Message ID | 20230901115910.701518-2-cyndis@kapsi.fi |
---|---|
State | Accepted |
Headers | show |
Series | [1/2] gpu: host1x: Correct allocated size for contexts | expand |
diff --git a/drivers/gpu/drm/tegra/gem.c b/drivers/gpu/drm/tegra/gem.c index a4023163493d..346f70edfb15 100644 --- a/drivers/gpu/drm/tegra/gem.c +++ b/drivers/gpu/drm/tegra/gem.c @@ -177,7 +177,7 @@ static void tegra_bo_unpin(struct host1x_bo_mapping *map) static void *tegra_bo_mmap(struct host1x_bo *bo) { struct tegra_bo *obj = host1x_to_tegra_bo(bo); - struct iosys_map map; + struct iosys_map map = {0}; int ret; if (obj->vaddr) {