Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S932607AbcKLV4F (ORCPT ); Sat, 12 Nov 2016 16:56:05 -0500 Received: from mail-wm0-f68.google.com ([74.125.82.68]:35158 "EHLO mail-wm0-f68.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S932346AbcKLV4C (ORCPT ); Sat, 12 Nov 2016 16:56:02 -0500 Subject: Re: [PATCH 3/3] mtd: remove unneeded initializer in mtd_ooblayout_count_bytes() To: Masahiro Yamada , linux-mtd@lists.infradead.org References: <1478657290-9430-1-git-send-email-yamada.masahiro@socionext.com> <1478657290-9430-4-git-send-email-yamada.masahiro@socionext.com> Cc: Boris Brezillon , Richard Weinberger , linux-kernel@vger.kernel.org, Cyrille Pitchen , Brian Norris , David Woodhouse From: Marek Vasut Message-ID: <5795165c-0037-0ee2-9392-9310ba5dbf5e@gmail.com> Date: Sat, 12 Nov 2016 22:28:04 +0100 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:45.0) Gecko/20100101 Icedove/45.4.0 MIME-Version: 1.0 In-Reply-To: <1478657290-9430-4-git-send-email-yamada.masahiro@socionext.com> Content-Type: text/plain; charset=windows-1252 Content-Transfer-Encoding: 7bit Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 977 Lines: 35 On 11/09/2016 03:08 AM, Masahiro Yamada wrote: > There is no need to initialize oobregion since it will be filled by > the iterator. > > This function is called with mtd_ooblayout_free or mtd_ooblayout_ecc > for the iterator; both of them calls memset() to clear the oobregion. > > Signed-off-by: Masahiro Yamada Reviewed-by: Marek Vasut > --- > > drivers/mtd/mtdcore.c | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/drivers/mtd/mtdcore.c b/drivers/mtd/mtdcore.c > index ca6a89a..ca661ce 100644 > --- a/drivers/mtd/mtdcore.c > +++ b/drivers/mtd/mtdcore.c > @@ -1354,7 +1354,7 @@ static int mtd_ooblayout_count_bytes(struct mtd_info *mtd, > int section, > struct mtd_oob_region *oobregion)) > { > - struct mtd_oob_region oobregion = { }; > + struct mtd_oob_region oobregion; > int section = 0, ret, nbytes = 0; > > while (1) { > -- Best regards, Marek Vasut