Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1756158AbbBLPQX (ORCPT ); Thu, 12 Feb 2015 10:16:23 -0500 Received: from down.free-electrons.com ([37.187.137.238]:43046 "EHLO mail.free-electrons.com" rhost-flags-OK-OK-OK-FAIL) by vger.kernel.org with ESMTP id S1755708AbbBLPQU (ORCPT ); Thu, 12 Feb 2015 10:16:20 -0500 Date: Thu, 12 Feb 2015 16:16:16 +0100 From: Boris Brezillon To: Antoine Tenart Cc: sebastian.hesselbarth@gmail.com, ezequiel.garcia@free-electrons.com, dwmw2@infradead.org, computersforpeace@gmail.com, thomas.petazzoni@free-electrons.com, zmxu@marvell.com, jszhang@marvell.com, linux-arm-kernel@lists.infradead.org, linux-mtd@lists.infradead.org, linux-kernel@vger.kernel.org Subject: Re: [PATCH v2 04/10] mtd: pxa3xx_nand: set NDCR_PG_PER_BLK if page per block is 128 Message-ID: <20150212161616.184481ea@bbrezillon> In-Reply-To: <1423752816-26219-5-git-send-email-antoine.tenart@free-electrons.com> References: <1423752816-26219-1-git-send-email-antoine.tenart@free-electrons.com> <1423752816-26219-5-git-send-email-antoine.tenart@free-electrons.com> X-Mailer: Claws Mail 3.9.3 (GTK+ 2.24.23; x86_64-pc-linux-gnu) MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 1383 Lines: 36 On Thu, 12 Feb 2015 15:53:30 +0100 Antoine Tenart wrote: Hm, still no commit message here ;-) > Signed-off-by: Antoine Tenart > --- > drivers/mtd/nand/pxa3xx_nand.c | 3 ++- > 1 file changed, 2 insertions(+), 1 deletion(-) > > diff --git a/drivers/mtd/nand/pxa3xx_nand.c b/drivers/mtd/nand/pxa3xx_nand.c > index 55fce9527c2e..64628bff3fa5 100644 > --- a/drivers/mtd/nand/pxa3xx_nand.c > +++ b/drivers/mtd/nand/pxa3xx_nand.c > @@ -1216,7 +1216,8 @@ static int pxa3xx_nand_config_flash(struct pxa3xx_nand_info *info, > > ndcr |= (pdata->enable_arbiter) ? NDCR_ND_ARB_EN : 0; > ndcr |= (host->col_addr_cycles == 2) ? NDCR_RA_START : 0; > - ndcr |= (f->page_per_block == 64) ? NDCR_PG_PER_BLK : 0; > + ndcr |= (f->page_per_block == 64 || f->page_per_block == 128) ? > + NDCR_PG_PER_BLK : 0; > ndcr |= (f->page_size == 2048) ? NDCR_PAGE_SZ : 0; > ndcr |= (f->flash_width == 16) ? NDCR_DWIDTH_M : 0; > ndcr |= (f->dfc_width == 16) ? NDCR_DWIDTH_C : 0; -- Boris Brezillon, Free Electrons Embedded Linux and Kernel engineering http://free-electrons.com -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/