diff mbox series

[U-Boot] sf: Fix S25FL116K entry

Message ID 20170914211510.374-1-marex@denx.de
State Accepted
Commit 545a43822226d151701f3bf9b668298a124fefc0
Delegated to: Jagannadha Sutradharudu Teki
Headers show
Series [U-Boot] sf: Fix S25FL116K entry | expand

Commit Message

Marek Vasut Sept. 14, 2017, 9:15 p.m. UTC
The flash chip is 2 MiB , organized as 32 x 64 kiB sectors .
Rectify the entry to match the datasheet, reality and Linux SNOR IDs.

Signed-off-by: Marek Vasut <marex@denx.de>
Cc: Jagan Teki <jagan@openedev.com>
---
 drivers/mtd/spi/spi_flash_ids.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Comments

Jagan Teki Sept. 25, 2017, 7:33 a.m. UTC | #1
On Fri, Sep 15, 2017 at 2:45 AM, Marek Vasut <marex@denx.de> wrote:
> The flash chip is 2 MiB , organized as 32 x 64 kiB sectors .
> Rectify the entry to match the datasheet, reality and Linux SNOR IDs.
>
> Signed-off-by: Marek Vasut <marex@denx.de>
> Cc: Jagan Teki <jagan@openedev.com>

Applied to u-boot-spi/master

thanks!
diff mbox series

Patch

diff --git a/drivers/mtd/spi/spi_flash_ids.c b/drivers/mtd/spi/spi_flash_ids.c
index c4ccf48af4..113ba4b6ff 100644
--- a/drivers/mtd/spi/spi_flash_ids.c
+++ b/drivers/mtd/spi/spi_flash_ids.c
@@ -91,7 +91,7 @@  const struct spi_flash_info spi_flash_ids[] = {
 	{"s25fl016a",	   INFO(0x010214, 0x0, 64 * 1024,    32, 0) },
 	{"s25fl032a",	   INFO(0x010215, 0x0, 64 * 1024,    64, 0) },
 	{"s25fl064a",	   INFO(0x010216, 0x0, 64 * 1024,   128, 0) },
-	{"s25fl116k",	   INFO(0x014015, 0x0, 64 * 1024,   128, 0) },
+	{"s25fl116k",	   INFO(0x014015, 0x0, 64 * 1024,    32, 0) },
 	{"s25fl164k",	   INFO(0x014017, 0x0140,  64 * 1024,   128, 0) },
 	{"s25fl128p_256k", INFO(0x012018, 0x0300, 256 * 1024,    64, RD_FULL | WR_QPP) },
 	{"s25fl128p_64k",  INFO(0x012018, 0x0301,  64 * 1024,   256, RD_FULL | WR_QPP) },