From mboxrd@z Thu Jan 1 00:00:00 1970 From: Scott Wood Date: Wed, 16 Mar 2011 18:42:55 -0500 Subject: [U-Boot] [U-Boot, v4] NAND: add support for reading ONFI page table In-Reply-To: <201102251101.34075.florian@openwrt.org> References: <201102251101.34075.florian@openwrt.org> Message-ID: <20110316234255.GA1629@schlenkerla> List-Id: MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit To: u-boot@lists.denx.de On Fri, Feb 25, 2011 at 12:01:34AM -0000, Florian Fainelli wrote: > From: Florian Fainelli > > This patch adds support for reading an ONFI page parameter from a NAND > device supporting it. If this is the case, struct nand_chip onfi_version > member contains the supported ONFI version, 0 otherwise. > > This allows NAND drivers past nand_scan_ident to set the best timings for the > NAND chip. > > Signed-off-by: Florian Fainelli Applied to u-boot-nand-flash next with this change: diff --git a/drivers/mtd/nand/nand_base.c b/drivers/mtd/nand/nand_base.c index 0d7c819..fa286a8 100644 --- a/drivers/mtd/nand/nand_base.c +++ b/drivers/mtd/nand/nand_base.c @@ -2585,7 +2585,7 @@ static const struct nand_flash_dev *nand_get_flash_type(st type = nand_flash_ids; for (; type->name != NULL; type++) - if (dev_id == type->id) + if (*dev_id == type->id) break; -Scott