mtd: bcm47xxnflash: fix message

This is not a serial flash driver, but a nand flash driver

Signed-off-by: Hauke Mehrtens <hauke@hauke-m.de>
Signed-off-by: Artem Bityutskiy <artem.bityutskiy@linux.intel.com>
This commit is contained in:
Hauke Mehrtens 2013-01-28 11:25:47 +01:00 committed by Artem Bityutskiy
parent 2d13dc3bce
commit 0fca6ab4e1
1 changed files with 2 additions and 1 deletions

View File

@ -94,7 +94,8 @@ static int __init bcm47xxnflash_init(void)
*/ */
err = platform_driver_probe(&bcm47xxnflash_driver, bcm47xxnflash_probe); err = platform_driver_probe(&bcm47xxnflash_driver, bcm47xxnflash_probe);
if (err) if (err)
pr_err("Failed to register serial flash driver: %d\n", err); pr_err("Failed to register bcm47xx nand flash driver: %d\n",
err);
return err; return err;
} }