Skip to content

Commit be412ef

Browse files
drivers: flash: flexspi_mx25um51345g: fix erase chip lut entry
The DDR LUT entry for ERASE_CHIP was configured with an incorrect kFLEXSPI_Command, resulting in the erase operation not being executed. Signed-off-by: Andre Heinemans <[email protected]>
1 parent 8a74463 commit be412ef

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

drivers/flash/flash_mcux_flexspi_mx25um51345g.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -162,7 +162,7 @@ static const uint32_t flash_flexspi_nor_lut[][4] = {
162162

163163
[ERASE_CHIP] = {
164164
FLEXSPI_LUT_SEQ(kFLEXSPI_Command_DDR, kFLEXSPI_8PAD, 0x60,
165-
kFLEXSPI_Command_SDR, kFLEXSPI_8PAD, 0x9F),
165+
kFLEXSPI_Command_DDR, kFLEXSPI_8PAD, 0x9F),
166166
},
167167

168168
[READ] = {

0 commit comments

Comments
 (0)