aboutsummaryrefslogtreecommitdiffstats
path: root/include/linux/mtd
diff options
context:
space:
mode:
authorArtem Bityutskiy <artem.bityutskiy@linux.intel.com>2011-12-23 11:40:06 -0500
committerDavid Woodhouse <David.Woodhouse@intel.com>2012-01-09 13:25:27 -0500
commitd264f72ae56245358025109d9d066d159589802d (patch)
tree632e74730cc89dad8446032d817e370dd7bb9869 /include/linux/mtd
parenta750b5ce5e1174ea68f66bf79962c479f7f23998 (diff)
mtd: introduce mtd_read_fact_prot_reg interface
Signed-off-by: Artem Bityutskiy <artem.bityutskiy@linux.intel.com> Signed-off-by: David Woodhouse <David.Woodhouse@intel.com>
Diffstat (limited to 'include/linux/mtd')
-rw-r--r--include/linux/mtd/mtd.h10
1 files changed, 9 insertions, 1 deletions
diff --git a/include/linux/mtd/mtd.h b/include/linux/mtd/mtd.h
index 9a7a7f2d2296..d77a7f83270f 100644
--- a/include/linux/mtd/mtd.h
+++ b/include/linux/mtd/mtd.h
@@ -194,13 +194,14 @@ struct mtd_info {
194 struct mtd_oob_ops *ops); 194 struct mtd_oob_ops *ops);
195 int (*get_fact_prot_info) (struct mtd_info *mtd, struct otp_info *buf, 195 int (*get_fact_prot_info) (struct mtd_info *mtd, struct otp_info *buf,
196 size_t len); 196 size_t len);
197 int (*read_fact_prot_reg) (struct mtd_info *mtd, loff_t from,
198 size_t len, size_t *retlen, u_char *buf);
197 199
198 /* Backing device capabilities for this device 200 /* Backing device capabilities for this device
199 * - provides mmap capabilities 201 * - provides mmap capabilities
200 */ 202 */
201 struct backing_dev_info *backing_dev_info; 203 struct backing_dev_info *backing_dev_info;
202 204
203 int (*read_fact_prot_reg) (struct mtd_info *mtd, loff_t from, size_t len, size_t *retlen, u_char *buf);
204 int (*get_user_prot_info) (struct mtd_info *mtd, struct otp_info *buf, size_t len); 205 int (*get_user_prot_info) (struct mtd_info *mtd, struct otp_info *buf, size_t len);
205 int (*read_user_prot_reg) (struct mtd_info *mtd, loff_t from, size_t len, size_t *retlen, u_char *buf); 206 int (*read_user_prot_reg) (struct mtd_info *mtd, loff_t from, size_t len, size_t *retlen, u_char *buf);
206 int (*write_user_prot_reg) (struct mtd_info *mtd, loff_t from, size_t len, size_t *retlen, u_char *buf); 207 int (*write_user_prot_reg) (struct mtd_info *mtd, loff_t from, size_t len, size_t *retlen, u_char *buf);
@@ -337,6 +338,13 @@ static inline int mtd_get_fact_prot_info(struct mtd_info *mtd,
337 return mtd->get_fact_prot_info(mtd, buf, len); 338 return mtd->get_fact_prot_info(mtd, buf, len);
338} 339}
339 340
341static inline int mtd_read_fact_prot_reg(struct mtd_info *mtd, loff_t from,
342 size_t len, size_t *retlen,
343 u_char *buf)
344{
345 return mtd->read_fact_prot_reg(mtd, from, len, retlen, buf);
346}
347
340static inline struct mtd_info *dev_to_mtd(struct device *dev) 348static inline struct mtd_info *dev_to_mtd(struct device *dev)
341{ 349{
342 return dev ? dev_get_drvdata(dev) : NULL; 350 return dev ? dev_get_drvdata(dev) : NULL;