[MTD] [NAND] plat_nand: set mtd->name
authorHamish Moffatt <hamish@cloud.net.au>
Fri, 28 Mar 2008 04:00:00 +0000 (15:00 +1100)
committerDavid Woodhouse <dwmw2@infradead.org>
Tue, 22 Apr 2008 20:11:54 +0000 (21:11 +0100)
This patch sets mtd->name to the platform bus ID in the plat_nand
driver, so that you can specify partitions readily with mtdparts=.

Currently it relies on nand_base filling in the name from the device,
which results in names like "NAND 256MiB 3,3V 8-bit", that you can't
use with cmdlineparts.

Signed-off-by: Hamish Moffatt <hamish@cloud.net.au>
Signed-off-by: David Woodhouse <dwmw2@infradead.org>
drivers/mtd/nand/plat_nand.c

index 0fdb93e..f674c54 100644 (file)
@@ -54,6 +54,7 @@ static int __init plat_nand_probe(struct platform_device *pdev)
        data->chip.priv = &data;
        data->mtd.priv = &data->chip;
        data->mtd.owner = THIS_MODULE;
+       data->mtd.name = pdev->dev.bus_id;
 
        data->chip.IO_ADDR_R = data->io_base;
        data->chip.IO_ADDR_W = data->io_base;