On Mon, 14 Mar 2016 02:47:56 +0000 Peter Pan <[email protected]> wrote:
> Add new API definitions for nand_bbt to replace old ones without > any users. These API includes: > struct nand_bbt_create(struct mtd_info *mtd); > struct nand_bbt *nand_bbt_create(struct mtd_info *mtd, > const struct nand_bbt_ops *ops, > struct nand_chip_layout_info *info, > unsigned int options, > struct nand_bbt_descr *bbt_td, > struct nand_bbt_descr *bbt_md); > void nand_bbt_destroy(struct nand_bbt *bbt); > int nand_bbt_markbad(struct nand_bbt *bbt, loff_t offs); > int nand_bbt_isreserved(struct nand_bbt *bbt, loff_t offs); > int nand_bbt_isbad(struct nand_bbt *bbt, loff_t offs); > > Signed-off-by: Brian Norris <[email protected]> > Signed-off-by: Peter Pan <[email protected]> > --- > drivers/mtd/nand/nand_bbt.c | 113 > +++++++++++++++++++++++++++++++++++++++++++ > include/linux/mtd/nand_bbt.h | 11 +++++ > 2 files changed, 124 insertions(+) > > > +struct nand_bbt *nand_bbt_create(struct mtd_info *mtd, > + const struct nand_bbt_ops *ops, > + struct nand_chip_layout_info *info, Should be const struct nand_chip_layout_info *. -- Boris Brezillon, Free Electrons Embedded Linux and Kernel engineering http://free-electrons.com

