From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1752237AbbKKXqM (ORCPT ); Wed, 11 Nov 2015 18:46:12 -0500 Received: from mail-pa0-f45.google.com ([209.85.220.45]:33283 "EHLO mail-pa0-f45.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751671AbbKKXqL (ORCPT ); Wed, 11 Nov 2015 18:46:11 -0500 Date: Wed, 11 Nov 2015 15:46:07 -0800 From: Brian Norris To: Boris Brezillon Cc: linux-mtd@lists.infradead.org, linux-kernel@vger.kernel.org, Ezequiel Garcia , Marek Vasut , Scott Wood , Josh Wu , Robert Jarzmik , Kyungmin Park , Han Xu Subject: Re: [PATCH v2 06/11] mtd: nand: drop unnecessary partition parser data Message-ID: <20151111234607.GA96199@google.com> References: <1446262410-45754-1-git-send-email-computersforpeace@gmail.com> <1446262410-45754-7-git-send-email-computersforpeace@gmail.com> <20151101233237.21155d9e@bbrezillon> <20151102210001.GB7274@google.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20151102210001.GB7274@google.com> User-Agent: Mutt/1.5.21 (2010-09-15) Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Mon, Nov 02, 2015 at 01:00:01PM -0800, Brian Norris wrote: > On Sun, Nov 01, 2015 at 11:32:37PM +0100, Boris Brezillon wrote: > > On Fri, 30 Oct 2015 20:33:25 -0700 > > Brian Norris wrote: > > > [...] > > > diff --git a/drivers/mtd/nand/fsl_elbc_nand.c b/drivers/mtd/nand/fsl_elbc_nand.c > > > index dcb1f7f4873f..850546dc98c8 100644 > > > --- a/drivers/mtd/nand/fsl_elbc_nand.c > > > +++ b/drivers/mtd/nand/fsl_elbc_nand.c > > > @@ -748,6 +748,7 @@ static int fsl_elbc_chip_init(struct fsl_elbc_mtd *priv) > > > /* Fill in fsl_elbc_mtd structure */ > > > priv->mtd.priv = chip; > > > priv->mtd.dev.parent = priv->dev; > > > + chip->flash_node = priv->dev->of_node; > > > > Shouldn't we use the nand_set_flash_node() helper here? Here is a diff replacing > > all 'chip->flash_node =' occurrences by nand_set_flash_node(): > > Hmm, I don't know why I overlooked those. I think maybe I did the > initial replacement before this patch and forgot to do the same > replacement on my subsequent work. I guess that's what happens when I > rebase/rework too much... > > Thanks for the diff. I'll probably squash it into v3 if/when that comes. Pushed my patch 6 + your diff to l2-mtd.git/next. Thanks!