mirror of
https://source.denx.de/u-boot/u-boot.git
synced 2026-06-13 15:03:58 +03:00
mtd: nand: check nand_mtd_to_devnum() argument
If the "mtd" parameter is NULL, the search will definitely yield a negative result. In that case, it's better to exit immediately. Signed-off-by: Dario Binacchi <dario.binacchi@amarulasolutions.com> Reviewed-by: Michael Trimarchi <michael@amarulasolutions.com> Link: https://lore.kernel.org/all/20231102113829.58852-1-dario.binacchi@amarulasolutions.com
This commit is contained in:
@@ -41,8 +41,11 @@ int nand_mtd_to_devnum(struct mtd_info *mtd)
|
||||
{
|
||||
int i;
|
||||
|
||||
if (!mtd)
|
||||
return -ENODEV;
|
||||
|
||||
for (i = 0; i < CONFIG_SYS_MAX_NAND_DEVICE; i++) {
|
||||
if (mtd && get_nand_dev_by_index(i) == mtd)
|
||||
if (get_nand_dev_by_index(i) == mtd)
|
||||
return i;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user