From mboxrd@z Thu Jan 1 00:00:00 1970 From: Scott Wood Date: Wed, 18 Apr 2012 11:30:11 -0500 Subject: [U-Boot] [PATCH 4/9] imx: nand: Support flash based BBT In-Reply-To: <1334735852-23415-5-git-send-email-timo@exertus.fi> References: <1334223234-23383-1-git-send-email-timo@exertus.fi> <1334735852-23415-1-git-send-email-timo@exertus.fi> <1334735852-23415-5-git-send-email-timo@exertus.fi> Message-ID: <4F8EEC13.80602@freescale.com> List-Id: MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit To: u-boot@lists.denx.de On 04/18/2012 02:57 AM, Timo Ketola wrote: > +#ifdef CONFIG_SYS_NAND_USE_FLASH_BBT > + > + this->options = NAND_USE_FLASH_BBT; > + this->bbt_td = &bbt_main_descr; > + this->bbt_md = &bbt_mirror_descr; > + > +#endif Remove those blank lines, and use |= for options like is done with NAND_BUSWIDTH_16. -Scott