mtd_node.h 203 B

1234567891011
  1. #ifndef _NODE_INFO
  2. #define _NODE_INFO
  3. /*
  4. * Info we use to search for a flash node in DTB.
  5. */
  6. struct node_info {
  7. const char *compat; /* compatible string */
  8. int type; /* mtd flash type */
  9. };
  10. #endif