Skip to content

Commit 41e4f15

Browse files
mans0nambarus
authored andcommitted
mtd: spi-nor: esmt: Use correct name of f25l32qa
The flash ID of F25L32QA is 0x8c4016, whereas that of F25L32QA(2S) is 0x8c4116. F25L32QA(2S) is the newer version of F25L32QA and its BPn bits are non-volatile, unlike its older version. Signed-off-by: Sungbo Eo <[email protected]> Signed-off-by: Tudor Ambarus <[email protected]> Reviewed-by: Michael Walle <[email protected]> Link: https://lore.kernel.org/r/[email protected] Datasheet: https://www.esmt.com.tw/upload/pdf/ESMT/datasheets/F25L32QA.pdf Datasheet: https://www.esmt.com.tw/upload/pdf/ESMT/datasheets/F25L32QA_1(2S).pdf
1 parent 90c517f commit 41e4f15

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

drivers/mtd/spi-nor/esmt.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ static const struct flash_info esmt_nor_parts[] = {
1313
{ "f25l32pa", INFO(0x8c2016, 0, 64 * 1024, 64)
1414
FLAGS(SPI_NOR_HAS_LOCK | SPI_NOR_SWP_IS_VOLATILE)
1515
NO_SFDP_FLAGS(SECT_4K) },
16-
{ "f25l32qa", INFO(0x8c4116, 0, 64 * 1024, 64)
16+
{ "f25l32qa-2s", INFO(0x8c4116, 0, 64 * 1024, 64)
1717
FLAGS(SPI_NOR_HAS_LOCK)
1818
NO_SFDP_FLAGS(SECT_4K) },
1919
{ "f25l64qa", INFO(0x8c4117, 0, 64 * 1024, 128)

0 commit comments

Comments
 (0)