mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-11 07:34:31 +00:00
NAND: show manufacturer and device ID for unknown chips
When the NAND part is not supported, it is useful to show the manufacturer and device ID to help debugging and reporting. Signed-off-by: Florian Fainelli <f.fainelli@gmail.com> Signed-off-by: Scott Wood <scottwood@freescale.com>
This commit is contained in:
parent
54841ab50c
commit
3e9b349c7f
1 changed files with 5 additions and 1 deletions
|
@ -2652,8 +2652,12 @@ static struct nand_flash_dev *nand_get_flash_type(struct mtd_info *mtd,
|
|||
}
|
||||
}
|
||||
|
||||
if (!type)
|
||||
if (!type) {
|
||||
printk(KERN_INFO "%s: unknown NAND device: Manufacturer ID:"
|
||||
" 0x%02x, Chip ID: 0x%02x\n", __func__,
|
||||
*maf_id, dev_id);
|
||||
return ERR_PTR(-ENODEV);
|
||||
}
|
||||
|
||||
if (!mtd->name)
|
||||
mtd->name = type->name;
|
||||
|
|
Loading…
Reference in a new issue