diff options
author | Steve Rae <steve.rae@raedomain.com> | 2016-06-29 13:50:59 -0700 |
---|---|---|
committer | Scott Wood <oss@buserror.net> | 2016-07-24 20:36:29 -0500 |
commit | 59441ac3c135c412c679bdd1c82c8f2a9b805bbc (patch) | |
tree | 8b808deaa368521725e040c3ff04c6686e6fff13 /include/linux/mtd | |
parent | ebb7febc92fc628d1f37b96616a1bb21b646d072 (diff) |
mtd: fix compiler warnings
- add missing declaration
- update debug output format specifiers
Signed-off-by: Steve Rae <steve.rae@raedomain.com>
Diffstat (limited to 'include/linux/mtd')
-rw-r--r-- | include/linux/mtd/mtd.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/include/linux/mtd/mtd.h b/include/linux/mtd/mtd.h index cf20674549..779eea035c 100644 --- a/include/linux/mtd/mtd.h +++ b/include/linux/mtd/mtd.h @@ -500,5 +500,10 @@ int mtd_arg_off(const char *arg, int *idx, loff_t *off, loff_t *size, int mtd_arg_off_size(int argc, char *const argv[], int *idx, loff_t *off, loff_t *size, loff_t *maxsize, int devtype, uint64_t chipsize); + +/* drivers/mtd/mtdcore.c */ +void mtd_get_len_incl_bad(struct mtd_info *mtd, uint64_t offset, + const uint64_t length, uint64_t *len_incl_bad, + int *truncated); #endif #endif /* __MTD_MTD_H__ */ |