From mboxrd@z Thu Jan 1 00:00:00 1970 From: Boris Brezillon Subject: Re: [PATCH 03/14] qcom: mtd: nand: Fixed config error for BCH Date: Mon, 3 Jul 2017 21:47:35 +0200 Message-ID: <20170703214735.2acb70cc@bbrezillon> References: <1498720566-20782-1-git-send-email-absahu@codeaurora.org> <1498720566-20782-4-git-send-email-absahu@codeaurora.org> Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Return-path: Received: from mail.free-electrons.com ([62.4.15.54]:54780 "EHLO mail.free-electrons.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1754189AbdGCTri (ORCPT ); Mon, 3 Jul 2017 15:47:38 -0400 In-Reply-To: Sender: linux-arm-msm-owner@vger.kernel.org List-Id: linux-arm-msm@vger.kernel.org To: Marek Vasut Cc: Abhishek Sahu , dwmw2@infradead.org, computersforpeace@gmail.com, richard@nod.at, cyrille.pitchen@wedev4u.fr, robh+dt@kernel.org, mark.rutland@arm.com, linux-mtd@lists.infradead.org, devicetree@vger.kernel.org, linux-kernel@vger.kernel.org, linux-arm-msm@vger.kernel.org, andy.gross@linaro.org, architt@codeaurora.org, sricharan@codeaurora.org On Thu, 29 Jun 2017 11:49:07 +0200 Marek Vasut wrote: > On 06/29/2017 09:15 AM, Abhishek Sahu wrote: > > The configuration for BCH is not correct in the current > > driver so this patch fixed the same. > > Fix the commit message, I have no idea what this patch does or fixes. And please add a Fixes tag and Cc stable. > > > Signed-off-by: Abhishek Sahu > > --- > > drivers/mtd/nand/qcom_nandc.c | 2 +- > > 1 file changed, 1 insertion(+), 1 deletion(-) > > > > diff --git a/drivers/mtd/nand/qcom_nandc.c b/drivers/mtd/nand/qcom_nandc.c > > index 520add9..410ee53 100644 > > --- a/drivers/mtd/nand/qcom_nandc.c > > +++ b/drivers/mtd/nand/qcom_nandc.c > > @@ -1919,7 +1919,7 @@ static int qcom_nand_host_setup(struct qcom_nand_host *host) > > | wide_bus << WIDE_FLASH > > | 1 << DEV0_CFG1_ECC_DISABLE; > > > > - host->ecc_bch_cfg = host->bch_enabled << ECC_CFG_ECC_DISABLE > > + host->ecc_bch_cfg = !host->bch_enabled << ECC_CFG_ECC_DISABLE > > | 0 << ECC_SW_RESET > > | host->cw_data << ECC_NUM_DATA_BYTES > > | 1 << ECC_FORCE_CLK_OPEN > > > >