From mboxrd@z Thu Jan 1 00:00:00 1970 From: Scott Wood Date: Tue, 8 Oct 2013 12:35:41 -0500 Subject: [U-Boot] [PATCH v7 4/5] mtd: nand: omap: optimized chip->ecc.correct() for H/W ECC schemes In-Reply-To: <1380550418-17327-5-git-send-email-pekon@ti.com> References: <1380550418-17327-1-git-send-email-pekon@ti.com> <1380550418-17327-5-git-send-email-pekon@ti.com> Message-ID: <1381253741.7979.253.camel@snotra.buserror.net> List-Id: MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit To: u-boot@lists.denx.de On Mon, 2013-09-30 at 19:43 +0530, Pekon Gupta wrote: > + /* check calculated ecc */ > + for (i = 0; i < chip->ecc.bytes && !ecc_flag; i++) > + if (calc_ecc[i] != 0x00) > + ecc_flag = 1; U-Boot code style wants braces around multi-line bodies. -Scott