Lines Matching full:bbt
204 /* The maximum number of blocks to scan for a bbt */
209 * @cache: in memory BBT cache
210 * @option: the option of BBT
211 * @version: current memory BBT cache version
318 * @bbt: bad block table info
336 struct nand_bbt bbt; member
899 /* BBT related functions */
919 * nanddev_bbt_pos_to_entry() - Convert a NAND position into a BBT entry
921 * @pos: the NAND position we want to get BBT entry for
923 * Return the BBT entry used to store information about the eraseblock pointed
926 * Return: the BBT entry storing information about eraseblock pointed by @pos.
937 * nanddev_bbt_is_initialized() - Check if the BBT has been initialized
940 * Return: true if the BBT has been initialized, false otherwise.
944 return !!nand->bbt.cache; in nanddev_bbt_is_initialized()