On 10/08/15 04:22, Shunqian Zheng wrote:
From: ZhengShunQian <zhen...@rock-chips.com>

The position to read/write must be less than max
register size.


Signed-off-by: ZhengShunQian <zhen...@rock-chips.com>
---
  drivers/nvmem/core.c | 4 ++--
  1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/drivers/nvmem/core.c b/drivers/nvmem/core.c
index d3c6676..f4af8e5 100644
--- a/drivers/nvmem/core.c
+++ b/drivers/nvmem/core.c
@@ -67,7 +67,7 @@ static ssize_t bin_attr_nvmem_read(struct file *filp, struct 
kobject *kobj,
        int rc;

        /* Stop the user from reading */
-       if (pos > nvmem->size)
+       if (pos >= nvmem->size)
                return 0;

        if (pos + count > nvmem->size)
@@ -92,7 +92,7 @@ static ssize_t bin_attr_nvmem_write(struct file *filp, struct 
kobject *kobj,
        int rc;

        /* Stop the user from writing */
-       if (pos > nvmem->size)
+       if (pos >= nvmem->size)
                return 0;

        if (pos + count > nvmem->size)


This looks good,

Acked-by: Srinivas Kandagatla <srinivas.kandaga...@linaro.org>
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/

Reply via email to