Lines Matching refs:nand
771 struct nand_chip *nand; in flctl_probe() local
803 nand = &flctl->chip; in flctl_probe()
804 flctl_mtd->priv = nand; in flctl_probe()
809 nand->options = NAND_NO_AUTOINCR; in flctl_probe()
813 nand->chip_delay = 20; in flctl_probe()
815 nand->read_byte = flctl_read_byte; in flctl_probe()
816 nand->write_buf = flctl_write_buf; in flctl_probe()
817 nand->read_buf = flctl_read_buf; in flctl_probe()
818 nand->verify_buf = flctl_verify_buf; in flctl_probe()
819 nand->select_chip = flctl_select_chip; in flctl_probe()
820 nand->cmdfunc = flctl_cmdfunc; in flctl_probe()