aboutsummaryrefslogtreecommitdiffstats
path: root/include/linux/mtd/mtd.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/linux/mtd/mtd.h')
-rw-r--r--include/linux/mtd/mtd.h14
1 files changed, 14 insertions, 0 deletions
diff --git a/include/linux/mtd/mtd.h b/include/linux/mtd/mtd.h
index b8ad634391db..41a984dcb139 100644
--- a/include/linux/mtd/mtd.h
+++ b/include/linux/mtd/mtd.h
@@ -56,6 +56,17 @@ struct mtd_erase_region_info {
56 u_int32_t numblocks; /* Number of blocks of erasesize in this region */ 56 u_int32_t numblocks; /* Number of blocks of erasesize in this region */
57}; 57};
58 58
59/**
60 * struct mtd_ecc_stats - error correction status
61 *
62 * @corrected: number of corrected bits
63 * @failed: number of uncorrectable errors
64 */
65struct mtd_ecc_stats {
66 unsigned long corrected;
67 unsigned long failed;
68};
69
59struct mtd_info { 70struct mtd_info {
60 u_char type; 71 u_char type;
61 u_int32_t flags; 72 u_int32_t flags;
@@ -153,6 +164,9 @@ struct mtd_info {
153 164
154 struct notifier_block reboot_notifier; /* default mode before reboot */ 165 struct notifier_block reboot_notifier; /* default mode before reboot */
155 166
167 /* ECC status information */
168 struct mtd_ecc_stats ecc_stats;
169
156 void *priv; 170 void *priv;
157 171
158 struct module *owner; 172 struct module *owner;