Marcin Slusarz
2011-Nov-06 19:32 UTC
[Nouveau] [PATCH] add missing return in nv50_accel_init failure path
---
src/nv50_accel.c | 1 +
1 files changed, 1 insertions(+), 0 deletions(-)
diff --git a/src/nv50_accel.c b/src/nv50_accel.c
index d6c7528..ca06d8a 100644
--- a/src/nv50_accel.c
+++ b/src/nv50_accel.c
@@ -102,6 +102,7 @@ NVAccelInitNV50TCL(ScrnInfoPtr pScrn)
&pNv->vblank_sem)) {
nouveau_grobj_free(&pNv->NvSW);
nouveau_grobj_free(&pNv->Nv3D);
+ return FALSE;
}
if (nouveau_bo_new(pNv->dev, NOUVEAU_BO_VRAM, 0, 65536,
--
1.7.7
Marcin Slusarz
2011-Nov-09 21:38 UTC
[Nouveau] [PATCH] add missing return in nv50_accel_init failure path
On Sun, Nov 06, 2011 at 08:32:08PM +0100, Marcin Slusarz wrote:> (...)I see my last kernel patches were already applied (with an exception of different fix to nv10 problem and vram-limit/debugging patch). Thanks. What about these 3 ddx patches? Any comments? Marcin