rval was not properly initialised in smiapp_read_nvm(). Do that.

Signed-off-by: Sakari Ailus <[email protected]>
---
 drivers/media/video/smiapp/smiapp-core.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/drivers/media/video/smiapp/smiapp-core.c 
b/drivers/media/video/smiapp/smiapp-core.c
index 3bf086f..6524091 100644
--- a/drivers/media/video/smiapp/smiapp-core.c
+++ b/drivers/media/video/smiapp/smiapp-core.c
@@ -873,7 +873,7 @@ static int smiapp_read_nvm(struct smiapp_sensor *sensor,
                           unsigned char *nvm)
 {
        u32 i, s, p, np, v;
-       int rval, rval2;
+       int rval = 0, rval2;
 
        np = sensor->nvm_size / SMIAPP_NVM_PAGE_SIZE;
        for (p = 0; p < np; p++) {
-- 
1.7.2.5

--
To unsubscribe from this list: send the line "unsubscribe linux-media" in
the body of a message to [email protected]
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Reply via email to