Skip to content

Commit

Permalink
[MTD] support driver model updates
Browse files Browse the repository at this point in the history
Follow-on patch to the previous driver model patch for the MTD
framework.  This one makes various MTD drivers connect to the
driver model tree, so /sys/devices/virtual/mtd/* nodes are no
longer present ... mostly drivers used on boards I have handy.

Based on a patch from Kay Sievers.

Signed-off-by: David Brownell <dbrownell@users.sourceforge.net>
Signed-off-by: David Woodhouse <David.Woodhouse@intel.com>
  • Loading branch information
David Brownell authored and David Woodhouse committed Apr 4, 2009
1 parent 694bb7f commit 87f39f0
Show file tree
Hide file tree
Showing 8 changed files with 13 additions and 0 deletions.
2 changes: 2 additions & 0 deletions drivers/mtd/devices/m25p80.c
Original file line number Diff line number Diff line change
Expand Up @@ -672,6 +672,8 @@ static int __devinit m25p_probe(struct spi_device *spi)
flash->mtd.erasesize = info->sector_size;
}

flash->mtd.dev.parent = &spi->dev;

dev_info(&spi->dev, "%s (%lld Kbytes)\n", info->name,
(long long)flash->mtd.size >> 10);

Expand Down
2 changes: 2 additions & 0 deletions drivers/mtd/devices/mtd_dataflash.c
Original file line number Diff line number Diff line change
Expand Up @@ -664,6 +664,8 @@ add_dataflash_otp(struct spi_device *spi, char *name,
device->write = dataflash_write;
device->priv = priv;

device->dev.parent = &spi->dev;

if (revision >= 'c')
otp_tag = otp_setup(device, revision);

Expand Down
2 changes: 2 additions & 0 deletions drivers/mtd/maps/omap_nor.c
Original file line number Diff line number Diff line change
Expand Up @@ -115,6 +115,8 @@ static int __init omapflash_probe(struct platform_device *pdev)
}
info->mtd->owner = THIS_MODULE;

info->mtd->dev.parent = &pdev->dev;

#ifdef CONFIG_MTD_PARTITIONS
err = parse_mtd_partitions(info->mtd, part_probes, &info->parts, 0);
if (err > 0)
Expand Down
1 change: 1 addition & 0 deletions drivers/mtd/maps/physmap.c
Original file line number Diff line number Diff line change
Expand Up @@ -147,6 +147,7 @@ static int physmap_flash_probe(struct platform_device *dev)
devices_found++;
}
info->mtd[i]->owner = THIS_MODULE;
info->mtd[i]->dev.parent = &dev->dev;
}

if (devices_found == 1) {
Expand Down
1 change: 1 addition & 0 deletions drivers/mtd/maps/plat-ram.c
Original file line number Diff line number Diff line change
Expand Up @@ -224,6 +224,7 @@ static int platram_probe(struct platform_device *pdev)
}

info->mtd->owner = THIS_MODULE;
info->mtd->dev.parent = &pdev->dev;

platram_setrw(info, PLATRAM_RW);

Expand Down
2 changes: 2 additions & 0 deletions drivers/mtd/nand/davinci_nand.c
Original file line number Diff line number Diff line change
Expand Up @@ -343,6 +343,8 @@ static int __init nand_davinci_probe(struct platform_device *pdev)
info->mtd.name = dev_name(&pdev->dev);
info->mtd.owner = THIS_MODULE;

info->mtd.dev.parent = &pdev->dev;

info->chip.IO_ADDR_R = vaddr;
info->chip.IO_ADDR_W = vaddr;
info->chip.chip_delay = 0;
Expand Down
1 change: 1 addition & 0 deletions drivers/mtd/nand/mxc_nand.c
Original file line number Diff line number Diff line change
Expand Up @@ -866,6 +866,7 @@ static int __init mxcnd_probe(struct platform_device *pdev)
mtd = &host->mtd;
mtd->priv = this;
mtd->owner = THIS_MODULE;
mtd->dev.parent = &pdev->dev;

/* 50 us command delay time */
this->chip_delay = 5;
Expand Down
2 changes: 2 additions & 0 deletions drivers/mtd/onenand/omap2.c
Original file line number Diff line number Diff line change
Expand Up @@ -676,6 +676,8 @@ static int __devinit omap2_onenand_probe(struct platform_device *pdev)
c->mtd.priv = &c->onenand;
c->mtd.owner = THIS_MODULE;

c->mtd.dev.parent = &pdev->dev;

if (c->dma_channel >= 0) {
struct onenand_chip *this = &c->onenand;

Expand Down

0 comments on commit 87f39f0

Please sign in to comment.