File: mtd_node.h

package info (click to toggle)
u-boot 2019.01%2Bdfsg-7
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 118,016 kB
file content (11 lines) | stat: -rw-r--r-- 203 bytes parent folder | download | duplicates (17)
1
2
3
4
5
6
7
8
9
10
11
#ifndef _NODE_INFO
#define _NODE_INFO

/*
 * Info we use to search for a flash node in DTB.
 */
struct node_info {
	const char *compat;	/* compatible string */
	int type;		/* mtd flash type */
};
#endif