Browse Source

nvmem: imx-ocotp: Fix return value of imx_ocotp_read

imx_ocotp_read() should return 0 on success.

Signed-off-by: Axel Lin <axel.lin@ingics.com>
Signed-off-by: Srinivas Kandagatla <srinivas.kandagatla@linaro.org>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Axel Lin 9 years ago
parent
commit
c7e3c5f861
1 changed files with 1 additions and 1 deletions
  1. 1 1
      drivers/nvmem/imx-ocotp.c

+ 1 - 1
drivers/nvmem/imx-ocotp.c

@@ -51,7 +51,7 @@ static int imx_ocotp_read(void *context, const void *reg, size_t reg_size,
 		val += 4;
 		val += 4;
 	}
 	}
 
 
-	return (i - index) * 4;
+	return 0;
 }
 }
 
 
 static int imx_ocotp_write(void *context, const void *data, size_t count)
 static int imx_ocotp_write(void *context, const void *data, size_t count)