diff options
author | Artem Bityutskiy <artem.bityutskiy@linux.intel.com> | 2011-12-23 12:15:39 -0500 |
---|---|---|
committer | David Woodhouse <David.Woodhouse@intel.com> | 2012-01-09 13:25:39 -0500 |
commit | 7799f9ac8d8ff2db14736950275249df442baeac (patch) | |
tree | 4e1cab283bae84b6a2133883265923e68ef5ac4e /include/linux/mtd/mtd.h | |
parent | 85f2f2a809d658c15b574df02ede92090f45a1f2 (diff) |
mtd: introduce mtd_lock 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/mtd.h')
-rw-r--r-- | include/linux/mtd/mtd.h | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/include/linux/mtd/mtd.h b/include/linux/mtd/mtd.h index 47ea19c1e52..167bac2e380 100644 --- a/include/linux/mtd/mtd.h +++ b/include/linux/mtd/mtd.h | |||
@@ -207,14 +207,13 @@ struct mtd_info { | |||
207 | int (*writev) (struct mtd_info *mtd, const struct kvec *vecs, | 207 | int (*writev) (struct mtd_info *mtd, const struct kvec *vecs, |
208 | unsigned long count, loff_t to, size_t *retlen); | 208 | unsigned long count, loff_t to, size_t *retlen); |
209 | void (*sync) (struct mtd_info *mtd); | 209 | void (*sync) (struct mtd_info *mtd); |
210 | int (*lock) (struct mtd_info *mtd, loff_t ofs, uint64_t len); | ||
210 | 211 | ||
211 | /* Backing device capabilities for this device | 212 | /* Backing device capabilities for this device |
212 | * - provides mmap capabilities | 213 | * - provides mmap capabilities |
213 | */ | 214 | */ |
214 | struct backing_dev_info *backing_dev_info; | 215 | struct backing_dev_info *backing_dev_info; |
215 | 216 | ||
216 | /* Chip-supported device locking */ | ||
217 | int (*lock) (struct mtd_info *mtd, loff_t ofs, uint64_t len); | ||
218 | int (*unlock) (struct mtd_info *mtd, loff_t ofs, uint64_t len); | 217 | int (*unlock) (struct mtd_info *mtd, loff_t ofs, uint64_t len); |
219 | int (*is_locked) (struct mtd_info *mtd, loff_t ofs, uint64_t len); | 218 | int (*is_locked) (struct mtd_info *mtd, loff_t ofs, uint64_t len); |
220 | 219 | ||
@@ -384,6 +383,12 @@ static inline void mtd_sync(struct mtd_info *mtd) | |||
384 | mtd->sync(mtd); | 383 | mtd->sync(mtd); |
385 | } | 384 | } |
386 | 385 | ||
386 | /* Chip-supported device locking */ | ||
387 | static inline int mtd_lock(struct mtd_info *mtd, loff_t ofs, uint64_t len) | ||
388 | { | ||
389 | return mtd->lock(mtd, ofs, len); | ||
390 | } | ||
391 | |||
387 | static inline struct mtd_info *dev_to_mtd(struct device *dev) | 392 | static inline struct mtd_info *dev_to_mtd(struct device *dev) |
388 | { | 393 | { |
389 | return dev ? dev_get_drvdata(dev) : NULL; | 394 | return dev ? dev_get_drvdata(dev) : NULL; |