Displaying 1 result from an estimated 1 matches for "2724907a".
Did you mean:
272407
2017 Sep 23
0
[PATCH] drm/nouveau/bo: remove duplicated variable initialization
...s
redundantly initialized twice with the same value.
Signed-off-by: Sergi Granell <xerpi.g.12 at gmail.com>
---
drivers/gpu/drm/nouveau/nouveau_bo.c | 1 -
1 file changed, 1 deletion(-)
diff --git a/drivers/gpu/drm/nouveau/nouveau_bo.c b/drivers/gpu/drm/nouveau/nouveau_bo.c
index 548f36d3..2724907a 100644
--- a/drivers/gpu/drm/nouveau/nouveau_bo.c
+++ b/drivers/gpu/drm/nouveau/nouveau_bo.c
@@ -967,7 +967,6 @@ nv04_bo_move_m2mf(struct nouveau_channel *chan, struct ttm_buffer_object *bo,
OUT_RING (chan, nouveau_bo_mem_ctxdma(bo, chan, old_reg));
OUT_RING (chan, nouveau_bo_mem_ctxdma(bo, c...