mtd: rawnand: meson: fix scrambling mode value in command macro
[ Upstream commit ef6f463599e16924cdd02ce5056ab52879dc008c ] Scrambling mode is enabled by value (1 << 19). NFC_CMD_SCRAMBLER_ENABLE is already (1 << 19), so there is no need to shift it again in CMDRWGEN macro. Signed-off-by: Arseniy Krasnov <avkrasnov@salutedevices.com> Cc: <Stable@vger.kernel.org> Fixes: 8fae856c5350 ("mtd: rawnand: meson: add support for Amlogic NAND flash controller") Signed-off-by: Miquel Raynal <miquel.raynal@bootlin.com> Link: https://lore.kernel.org/linux-mtd/20240210214551.441610-1-avkrasnov@salutedevices.com Signed-off-by: Sasha Levin <sashal@kernel.org>
This commit is contained in:
parent
99878259e2
commit
a4f2b2bbaa
1 changed files with 1 additions and 1 deletions
|
@ -59,7 +59,7 @@
|
|||
#define CMDRWGEN(cmd_dir, ran, bch, short_mode, page_size, pages) \
|
||||
( \
|
||||
(cmd_dir) | \
|
||||
((ran) << 19) | \
|
||||
(ran) | \
|
||||
((bch) << 14) | \
|
||||
((short_mode) << 13) | \
|
||||
(((page_size) & 0x7f) << 6) | \
|
||||
|
|
Loading…
Reference in a new issue