[PATCH] gpu: drm/nouveau/core/engine/disp/dacnv50.c: fix var uninit issue

From: Cong Ding
Date: Thu Dec 06 2012 - 12:24:09 EST


the variable "ret" might be uninitialized in the "default" branch of "switch"

Signed-off-by: Cong Ding <dinggnu@xxxxxxxxx>
---
drivers/gpu/drm/nouveau/core/engine/disp/dacnv50.c | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/drivers/gpu/drm/nouveau/core/engine/disp/dacnv50.c b/drivers/gpu/drm/nouveau/core/engine/disp/dacnv50.c
index d0817d9..ae19dec 100644
--- a/drivers/gpu/drm/nouveau/core/engine/disp/dacnv50.c
+++ b/drivers/gpu/drm/nouveau/core/engine/disp/dacnv50.c
@@ -64,7 +64,7 @@ nv50_dac_mthd(struct nouveau_object *object, u32 mthd, void *args, u32 size)
struct nv50_disp_priv *priv = (void *)object->engine;
const u8 or = (mthd & NV50_DISP_DAC_MTHD_OR);
u32 *data = args;
- int ret;
+ int ret = 0;

if (size < sizeof(u32))
return -EINVAL;
--
1.7.4.5

--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/