mtd: fix mtd_oobavail() incoherent returned value

mtd_oobavail() returns either mtd->oovabail or mtd->oobsize. Both
values are unsigned 32-bit entities, so there is no reason to pretend
returning a signed one.

Signed-off-by: Miquel Raynal <miquel.raynal@bootlin.com>
Signed-off-by: Boris Brezillon <boris.brezillon@bootlin.com>
This commit is contained in:
Miquel Raynal 2018-11-18 21:18:30 +01:00 коммит произвёл Boris Brezillon
Родитель 4845a077c0
Коммит 4348433d8c
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -386,7 +386,7 @@ static inline struct device_node *mtd_get_of_node(struct mtd_info *mtd)
return dev_of_node(&mtd->dev); return dev_of_node(&mtd->dev);
} }
static inline int mtd_oobavail(struct mtd_info *mtd, struct mtd_oob_ops *ops) static inline u32 mtd_oobavail(struct mtd_info *mtd, struct mtd_oob_ops *ops)
{ {
return ops->mode == MTD_OPS_AUTO_OOB ? mtd->oobavail : mtd->oobsize; return ops->mode == MTD_OPS_AUTO_OOB ? mtd->oobavail : mtd->oobsize;
} }