[PATCH] nvmem: core: fix a copy paste error
Srinivas Kandagatla
srinivas.kandagatla at linaro.org
Fri Aug 14 03:17:18 PDT 2015
This patch fixes a copy paste error in a check which is performed to
determine if the cell is specified in bits or not.
This warning was picked-up by a static checker.
Reported-by: Dan Carpenter <dan.carpenter at oracle.com>
Signed-off-by: Srinivas Kandagatla <srinivas.kandagatla at linaro.org>
---
drivers/nvmem/core.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/drivers/nvmem/core.c b/drivers/nvmem/core.c
index 35a42bb..ea0d6fd 100644
--- a/drivers/nvmem/core.c
+++ b/drivers/nvmem/core.c
@@ -825,7 +825,7 @@ static int __nvmem_cell_read(struct nvmem_device *nvmem,
return rc;
/* shift bits in-place */
- if (cell->bit_offset || cell->bit_offset)
+ if (cell->bit_offset || cell->nbits)
nvmem_shift_read_buffer_in_place(cell, buf);
*len = cell->bytes;
--
1.9.1
More information about the linux-arm-kernel
mailing list