Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 87f39f04 authored by David Brownell's avatar David Brownell Committed by David Woodhouse
Browse files

[MTD] support driver model updates



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: default avatarDavid Brownell <dbrownell@users.sourceforge.net>
Signed-off-by: default avatarDavid Woodhouse <David.Woodhouse@intel.com>
parent 694bb7fc
Loading
Loading
Loading
Loading
+2 −0
Original line number Diff line number Diff line
@@ -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);

+2 −0
Original line number Diff line number Diff line
@@ -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);

+2 −0
Original line number Diff line number Diff line
@@ -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)
+1 −0
Original line number Diff line number Diff line
@@ -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) {
+1 −0
Original line number Diff line number Diff line
@@ -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);

Loading