You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
34 lines
1.0 KiB
34 lines
1.0 KiB
From a4077ce5871304f8a78f80b74b18b6052a410f1a Mon Sep 17 00:00:00 2001
|
|
From: "Andrey Jr. Melnikov" <temnota.am@gmail.com>
|
|
Date: Thu, 8 Dec 2016 19:57:08 +0300
|
|
Subject: [PATCH] mtd: nand: Add Winbond manufacturer id
|
|
|
|
Add WINBOND manufacturer id.
|
|
|
|
Signed-off-by: Andrey Jr. Melnikov <temnota.am@gmail.com>
|
|
Signed-off-by: Boris Brezillon <boris.brezillon@free-electrons.com>
|
|
---
|
|
drivers/mtd/nand/nand_ids.c | 1 +
|
|
include/linux/mtd/nand.h | 1 +
|
|
2 files changed, 2 insertions(+)
|
|
|
|
--- a/drivers/mtd/nand/nand_ids.c
|
|
+++ b/drivers/mtd/nand/nand_ids.c
|
|
@@ -181,6 +181,7 @@ struct nand_manufacturers nand_manuf_ids
|
|
{NAND_MFR_SANDISK, "SanDisk"},
|
|
{NAND_MFR_INTEL, "Intel"},
|
|
{NAND_MFR_ATO, "ATO"},
|
|
+ {NAND_MFR_WINBOND, "Winbond"},
|
|
{0x0, "Unknown"}
|
|
};
|
|
|
|
--- a/include/linux/mtd/nand.h
|
|
+++ b/include/linux/mtd/nand.h
|
|
@@ -736,6 +736,7 @@ struct nand_chip {
|
|
#define NAND_MFR_SANDISK 0x45
|
|
#define NAND_MFR_INTEL 0x89
|
|
#define NAND_MFR_ATO 0x9b
|
|
+#define NAND_MFR_WINBOND 0xef
|
|
|
|
/* The maximum expected count of bytes in the NAND ID sequence */
|
|
#define NAND_MAX_ID_LEN 8
|
|
|