aboutsummaryrefslogtreecommitdiffstats
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
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>
-rw-r--r--drivers/mtd/mtdchar.c3
-rw-r--r--drivers/mtd/mtdpart.c3
-rw-r--r--include/linux/mtd/mtd.h10
3 files changed, 12 insertions, 4 deletions
diff --git a/drivers/mtd/mtdchar.c b/drivers/mtd/mtdchar.c
index 4b1772feeafc..6afb05469bbd 100644
--- a/drivers/mtd/mtdchar.c
+++ b/drivers/mtd/mtdchar.c
@@ -213,7 +213,8 @@ static ssize_t mtdchar_read(struct file *file, char __user *buf, size_t count,
213 213
214 switch (mfi->mode) { 214 switch (mfi->mode) {
215 case MTD_FILE_MODE_OTP_FACTORY: 215 case MTD_FILE_MODE_OTP_FACTORY:
216 ret = mtd->read_fact_prot_reg(mtd, *ppos, len, &retlen, kbuf); 216 ret = mtd_read_fact_prot_reg(mtd, *ppos, len,
217 &retlen, kbuf);
217 break; 218 break;
218 case MTD_FILE_MODE_OTP_USER: 219 case MTD_FILE_MODE_OTP_USER:
219 ret = mtd->read_user_prot_reg(mtd, *ppos, len, &retlen, kbuf); 220 ret = mtd->read_user_prot_reg(mtd, *ppos, len, &retlen, kbuf);
diff --git a/drivers/mtd/mtdpart.c b/drivers/mtd/mtdpart.c
index 6bed8bb3b15d..4f2c9137cd49 100644
--- a/drivers/mtd/mtdpart.c
+++ b/drivers/mtd/mtdpart.c
@@ -167,8 +167,7 @@ static int part_read_fact_prot_reg(struct mtd_info *mtd, loff_t from,
167 size_t len, size_t *retlen, u_char *buf) 167 size_t len, size_t *retlen, u_char *buf)
168{ 168{
169 struct mtd_part *part = PART(mtd); 169 struct mtd_part *part = PART(mtd);
170 return part->master->read_fact_prot_reg(part->master, from, 170 return mtd_read_fact_prot_reg(part->master, from, len, retlen, buf);
171 len, retlen, buf);
172} 171}
173 172
174static int part_get_fact_prot_info(struct mtd_info *mtd, struct otp_info *buf, 173static int part_get_fact_prot_info(struct mtd_info *mtd, struct otp_info *buf,
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;