Lines Matching full:bbt
129 /* The maximum number of blocks to scan for a bbt */
134 * @cache: in memory BBT cache
135 * @option: the option of BBT
136 * @version: current memory BBT cache version
174 * @bbt: bad block table info
192 struct nand_bbt bbt; member
693 /* BBT related functions */
713 * nanddev_bbt_pos_to_entry() - Convert a NAND position into a BBT entry
715 * @pos: the NAND position we want to get BBT entry for
717 * Return the BBT entry used to store information about the eraseblock pointed
720 * Return: the BBT entry storing information about eraseblock pointed by @pos.
731 * nanddev_bbt_is_initialized() - Check if the BBT has been initialized
734 * Return: true if the BBT has been initialized, false otherwise.
738 return !!nand->bbt.cache; in nanddev_bbt_is_initialized()