From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mailapp01.imgtec.com ([195.59.15.196]) by bombadil.infradead.org with esmtp (Exim 4.80.1 #2 (Red Hat Linux)) id 1alHFD-0002CT-DR for linux-mtd@lists.infradead.org; Wed, 30 Mar 2016 14:37:16 +0000 Subject: Re: [PATCH] mtd: nand: jz4780: fixup, device structure assigned at probe To: Boris Brezillon , Jorge Ramirez-Ortiz References: <1458784407-12908-1-git-send-email-jorge.ramirez-ortiz@linaro.org> <20160330163432.29c3864c@bbrezillon> CC: , , , , Ezequiel Garcia From: Harvey Hunt Message-ID: <56FBE483.2010407@imgtec.com> Date: Wed, 30 Mar 2016 15:36:51 +0100 MIME-Version: 1.0 In-Reply-To: <20160330163432.29c3864c@bbrezillon> Content-Type: text/plain; charset="windows-1252"; format=flowed Content-Transfer-Encoding: 7bit List-Id: Linux MTD discussion mailing list List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Hi, On 30/03/16 15:34, Boris Brezillon wrote: > On Wed, 23 Mar 2016 21:53:27 -0400 > Jorge Ramirez-Ortiz wrote: > > How about adding the following message: > > " > bch->dev is already assigned to &pdev->dev in the probe function. > Remove the duplicate assignment done in jz4780_bch_get(). > " > > If you agree I'll add this commit message while applying (no need to > resend). That sounds good to me. Congrats on the maintainership btw. :-) > > Harvey, can I have your ack on this patch? Acked-by: Harvey Hunt > > Thanks, > > Boris > Thanks, Harvey >> Signed-off-by: Jorge Ramirez-Ortiz >> --- >> drivers/mtd/nand/jz4780_bch.c | 1 - >> 1 file changed, 1 deletion(-) >> >> diff --git a/drivers/mtd/nand/jz4780_bch.c b/drivers/mtd/nand/jz4780_bch.c >> index 755499c..d74f4ba 100644 >> --- a/drivers/mtd/nand/jz4780_bch.c >> +++ b/drivers/mtd/nand/jz4780_bch.c >> @@ -287,7 +287,6 @@ static struct jz4780_bch *jz4780_bch_get(struct device_node *np) >> bch = platform_get_drvdata(pdev); >> clk_prepare_enable(bch->clk); >> >> - bch->dev = &pdev->dev; >> return bch; >> } >> > > >