diff options
| author | Tom Rini <trini@konsulko.com> | 2025-07-01 19:06:09 -0600 |
|---|---|---|
| committer | Tom Rini <trini@konsulko.com> | 2025-10-28 12:19:04 -0600 |
| commit | 9465ca3d4559f596b1d3f65e7b2d66f50080bdd4 (patch) | |
| tree | 5a662c425a149c86c2b2e9bc6efa8ff700b7b36d /include/linux/mtd | |
| parent | e15dd01422efda76dcb5346b37e9781af5fcb67c (diff) | |
mtd: Add function prototype for mtd_read_oob_bf(...)
The function mtd_read_oob_bf is called by cmd/nand.c but does not have a
prototype in any header. Add this to include/linux/mtd/mtd.h as that is
the most logical place currently.
Fixes: 1fac57720719 ("nand: Add a watch command")
Signed-off-by: Tom Rini <trini@konsulko.com>
Diffstat (limited to 'include/linux/mtd')
| -rw-r--r-- | include/linux/mtd/mtd.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/linux/mtd/mtd.h b/include/linux/mtd/mtd.h index 3ffcd40807d..1f97bc4fe11 100644 --- a/include/linux/mtd/mtd.h +++ b/include/linux/mtd/mtd.h @@ -438,6 +438,7 @@ static inline int mtd_bind(struct udevice *dev, struct mtd_info **mtd) #endif int mtd_read_oob(struct mtd_info *mtd, loff_t from, struct mtd_oob_ops *ops); +int mtd_read_oob_bf(struct mtd_info *mtd, loff_t from, struct mtd_oob_ops *ops); int mtd_write_oob(struct mtd_info *mtd, loff_t to, struct mtd_oob_ops *ops); int mtd_get_fact_prot_info(struct mtd_info *mtd, size_t len, size_t *retlen, |
