Re: [U-Boot] [PATCH] MTD: nand: mxs_nand_spl: Fix empty function pointer for BBT

2019-02-02 Thread Jörg Krause
On Thu, 2019-01-03 at 15:52 +, Stefan Agner wrote: > On 30.12.18 17:11, Adam Ford wrote: > > The initialization function calls a nand_chip.scan_bbt(mtd) but > > scan_bbt is never initialized resulting in an undefined function > > pointer. This will direct the function pointer to

Re: [U-Boot] [PATCH] MTD: nand: mxs_nand_spl: Fix empty function pointer for BBT

2019-01-03 Thread Stefan Agner
On 30.12.18 17:11, Adam Ford wrote: > The initialization function calls a nand_chip.scan_bbt(mtd) but > scan_bbt is never initialized resulting in an undefined function > pointer. This will direct the function pointer to nand_default_bbt > defined in the same file. > > Signed-off-by: Adam Ford

[U-Boot] [PATCH] MTD: nand: mxs_nand_spl: Fix empty function pointer for BBT

2018-12-30 Thread Adam Ford
The initialization function calls a nand_chip.scan_bbt(mtd) but scan_bbt is never initialized resulting in an undefined function pointer. This will direct the function pointer to nand_default_bbt defined in the same file. Signed-off-by: Adam Ford diff --git