Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit cbf854ab authored by Axel Lin's avatar Axel Lin Committed by Greg Kroah-Hartman
Browse files

nvmem: core: Handle shift bits in-place if cell->nbits is non-zero



It's pointless to test (cell->bit_offset || cell->bit_offset).
nvmem_shift_read_buffer_in_place() should be called when
(cell->bit_offset || cell->nbits).

Signed-off-by: default avatarAxel Lin <axel.lin@ingics.com>
Signed-off-by: default avatarSrinivas Kandagatla <srinivas.kandagatla@linaro.org>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 7c806883
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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;