diff options
Diffstat (limited to 'include/linux')
| -rw-r--r-- | include/linux/mtd/mtd.h | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/include/linux/mtd/mtd.h b/include/linux/mtd/mtd.h index d77a7f83270f..ff0a3a18f397 100644 --- a/include/linux/mtd/mtd.h +++ b/include/linux/mtd/mtd.h | |||
| @@ -196,13 +196,14 @@ struct mtd_info { | |||
| 196 | size_t len); | 196 | size_t len); |
| 197 | int (*read_fact_prot_reg) (struct mtd_info *mtd, loff_t from, | 197 | int (*read_fact_prot_reg) (struct mtd_info *mtd, loff_t from, |
| 198 | size_t len, size_t *retlen, u_char *buf); | 198 | size_t len, size_t *retlen, u_char *buf); |
| 199 | int (*get_user_prot_info) (struct mtd_info *mtd, struct otp_info *buf, | ||
| 200 | size_t len); | ||
| 199 | 201 | ||
| 200 | /* Backing device capabilities for this device | 202 | /* Backing device capabilities for this device |
| 201 | * - provides mmap capabilities | 203 | * - provides mmap capabilities |
| 202 | */ | 204 | */ |
| 203 | struct backing_dev_info *backing_dev_info; | 205 | struct backing_dev_info *backing_dev_info; |
| 204 | 206 | ||
| 205 | int (*get_user_prot_info) (struct mtd_info *mtd, struct otp_info *buf, size_t len); | ||
| 206 | int (*read_user_prot_reg) (struct mtd_info *mtd, loff_t from, size_t len, size_t *retlen, u_char *buf); | 207 | int (*read_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); | 208 | int (*write_user_prot_reg) (struct mtd_info *mtd, loff_t from, size_t len, size_t *retlen, u_char *buf); |
| 208 | int (*lock_user_prot_reg) (struct mtd_info *mtd, loff_t from, size_t len); | 209 | int (*lock_user_prot_reg) (struct mtd_info *mtd, loff_t from, size_t len); |
| @@ -345,6 +346,13 @@ static inline int mtd_read_fact_prot_reg(struct mtd_info *mtd, loff_t from, | |||
| 345 | return mtd->read_fact_prot_reg(mtd, from, len, retlen, buf); | 346 | return mtd->read_fact_prot_reg(mtd, from, len, retlen, buf); |
| 346 | } | 347 | } |
| 347 | 348 | ||
| 349 | static inline int mtd_get_user_prot_info(struct mtd_info *mtd, | ||
| 350 | struct otp_info *buf, | ||
| 351 | size_t len) | ||
| 352 | { | ||
| 353 | return mtd->get_user_prot_info(mtd, buf, len); | ||
| 354 | } | ||
| 355 | |||
| 348 | static inline struct mtd_info *dev_to_mtd(struct device *dev) | 356 | static inline struct mtd_info *dev_to_mtd(struct device *dev) |
| 349 | { | 357 | { |
| 350 | return dev ? dev_get_drvdata(dev) : NULL; | 358 | return dev ? dev_get_drvdata(dev) : NULL; |
