From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from aserp1040.oracle.com ([141.146.126.69]) by bombadil.infradead.org with esmtps (Exim 4.85_2 #1 (Red Hat Linux)) id 1bNoAA-0002CG-NH for linux-mtd@lists.infradead.org; Thu, 14 Jul 2016 21:27:19 +0000 Date: Fri, 15 Jul 2016 00:26:08 +0300 From: Dan Carpenter To: Boris Brezillon , Teresa Remmet Cc: Richard Weinberger , David Woodhouse , Brian Norris , linux-mtd@lists.infradead.org, kernel-janitors@vger.kernel.org Subject: [patch] mtd: nand: omap2: Cleanup a curly brace issue Message-ID: <20160714212608.GA10856@mwanda> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline List-Id: Linux MTD discussion mailing list List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , It doesn't affect runtime, but curly braces were obviously intended. Signed-off-by: Dan Carpenter diff --git a/drivers/mtd/nand/omap2.c b/drivers/mtd/nand/omap2.c index a36ad3d..ab7c340 100644 --- a/drivers/mtd/nand/omap2.c +++ b/drivers/mtd/nand/omap2.c @@ -1655,10 +1655,11 @@ static int omap_get_dt_info(struct device *dev, struct omap_nand_info *info) /* detect availability of ELM module. Won't be present pre-OMAP4 */ info->elm_of_node = of_parse_phandle(child, "ti,elm-id", 0); - if (!info->elm_of_node) + if (!info->elm_of_node) { info->elm_of_node = of_parse_phandle(child, "elm_id", 0); if (!info->elm_of_node) dev_dbg(dev, "ti,elm-id not in DT\n"); + } /* select ecc-scheme for NAND */ if (of_property_read_string(child, "ti,nand-ecc-opt", &s)) {