Linux Kernel  3.7.1
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Groups Pages
flash.h
Go to the documentation of this file.
1 #ifndef LINUX_SPI_FLASH_H
2 #define LINUX_SPI_FLASH_H
3 
4 struct mtd_partition;
5 
21 struct flash_platform_data {
22  char *name;
23  struct mtd_partition *parts;
24  unsigned int nr_parts;
25 
26  char *type;
27 
28  /* we'll likely add more ... use JEDEC IDs, etc */
29 };
30 
31 #endif