From mboxrd@z Thu Jan 1 00:00:00 1970 From: Krzysztof Kozlowski Subject: Re: [PATCH v4 38/58] mtd: nand: s3c2410: use the mtd instance embedded in struct nand_chip Date: Fri, 11 Dec 2015 11:38:20 +0900 Message-ID: <566A371C.7030507@samsung.com> References: <1449734442-18672-1-git-send-email-boris.brezillon@free-electrons.com> <1449734442-18672-39-git-send-email-boris.brezillon@free-electrons.com> Reply-To: k.kozlowski-Sze3O3UU22JBDgjK7y7TUQ@public.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Return-path: In-reply-to: <1449734442-18672-39-git-send-email-boris.brezillon-wi1+55ScJUtKEb57/3fJTNBPR1lH4CV8@public.gmane.org> List-Post: , List-Help: , List-Archive: , List-Unsubscribe: , To: Boris Brezillon , David Woodhouse , Brian Norris , linux-mtd-IAPFreCvJWM7uuMidbF8XUB+6BGkLq7r@public.gmane.org Cc: linux-arm-kernel-IAPFreCvJWM7uuMidbF8XUB+6BGkLq7r@public.gmane.org, linux-kernel-u79uwXL29TY76Z2rM5mHXA@public.gmane.org, Jonathan Corbet , linux-doc-u79uwXL29TY76Z2rM5mHXA@public.gmane.org, Hartley Sweeten , Ryan Mallon , Shawn Guo , Sascha Hauer , Imre Kaloz , Krzysztof Halasa , Tony Lindgren , linux-omap-u79uwXL29TY76Z2rM5mHXA@public.gmane.org, Alexander Clouter , Thomas Petazzoni , Gregory CLEMENT , Jason Cooper , Sebastian Hesselbarth , Andrew Lunn , Daniel Mack , Haojian Zhuang , Robert Jarzmik , Marek Vasut , Steven Miao , adi-buildr List-Id: linux-omap@vger.kernel.org On 10.12.2015 17:00, Boris Brezillon wrote: > struct nand_chip now embeds an mtd device. Make use of this mtd instance. > > Signed-off-by: Boris Brezillon > --- > Changes generated with the following coccinelle script > > --->8--- > virtual patch > > @fix1@ > identifier __chipfield, __mtdfield; > type __type; > @@ > ( > __type { > ... > struct nand_chip __chipfield; > ... > - struct mtd_info __mtdfield; > ... > }; > | > __type { > ... > - struct mtd_info __mtdfield; > ... > struct nand_chip __chipfield; > ... > }; > ) > > @fix2 depends on fix1@ > identifier fix1.__chipfield, fix1.__mtdfield; > identifier __subfield; > type fix1.__type; > __type *__priv; > @@ > ( > - __priv->__mtdfield.__subfield > + nand_to_mtd(&__priv->__chipfield)->__subfield > | > - &(__priv->__mtdfield) > + nand_to_mtd(&__priv->__chipfield) > ) > --->8--- > --- > drivers/mtd/nand/s3c2410.c | 23 ++++++++++++++--------- > 1 file changed, 14 insertions(+), 9 deletions(-) > Looks correct: Reviewed-by: Krzysztof Kozlowski Best regards, Krzysztof