summaryrefslogtreecommitdiffstats
path: root/include/nand.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/nand.h')
-rw-r--r--include/nand.h15
1 files changed, 15 insertions, 0 deletions
diff --git a/include/nand.h b/include/nand.h
new file mode 100644
index 0000000000..97b17056ea
--- /dev/null
+++ b/include/nand.h
@@ -0,0 +1,15 @@
+
+#ifndef __NAND_H__
+#define __NAND_H__
+
+struct nand_chip;
+
+struct nand_platform_data {
+ void (*hwcontrol)(struct nand_chip *, int cmd);
+ int eccmode;
+ int (*dev_ready)(struct nand_chip *);
+ int chip_delay;
+};
+
+#endif /* __NAND_H__ */
+