summaryrefslogtreecommitdiff
path: root/src/flash/nand/driver.h
Commit message (Collapse)AuthorAgeFilesLines
* flash/nand: review NAND driver interfaceAntonio Borneo2011-01-021-6/+0
| | | | | | | | | | From struct nand_flash_controller : - remove unused field register_commands; - remove field controller_ready, exported but never referenced. Remove dead code pointed by controller_ready. Signed-off-by: Antonio Borneo <borneo.antonio@gmail.com>
* warnings: use more 'const' for char *Øyvind Harboe2010-12-291-1/+1
| | | | Signed-off-by: Øyvind Harboe <oyvind.harboe@zylin.com>
* Comment and doxygen fixesDavid Brownell2009-12-091-1/+1
| | | | Signed-off-by: David Brownell <dbrownell@users.sourceforge.net>
* split NAND driver handling into nand/driver.[ch]Zachary T Welch2009-12-041-0/+106
This work parallels the NOR directory, encapsulating the NAND drivers into a separate file. This takes an extra step by encapsulating the type of data structure used to manage the drivers, allowing it to be changed from an array to a dynamic list in the future.