Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

at f631a78445e94b8a9ae23980d00a5cb2d9c3d0c7 17 lines 346 B view raw
1#ifndef MFD_TMIO_H 2#define MFD_TMIO_H 3 4/* 5 * data for the NAND controller 6 */ 7struct tmio_nand_data { 8 struct nand_bbt_descr *badblock_pattern; 9 struct mtd_partition *partition; 10 unsigned int num_partitions; 11}; 12 13#define TMIO_NAND_CONFIG "tmio-nand-config" 14#define TMIO_NAND_CONTROL "tmio-nand-control" 15#define TMIO_NAND_IRQ "tmio-nand" 16 17#endif