diff options
author | David Brownell <dbrownell@users.sourceforge.net> | 2009-03-26 03:42:50 -0400 |
---|---|---|
committer | David Woodhouse <David.Woodhouse@intel.com> | 2009-04-04 09:32:59 -0400 |
commit | 87f39f0493edf7051b1b87c6e9eb7f9a74be8e85 (patch) | |
tree | d4e3675487c46c36dcacf95ad62ab561cbc33d88 /drivers/mtd/devices | |
parent | 694bb7fc19c6b87e106f4c85a2707072e2f111a0 (diff) |
[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: David Brownell <dbrownell@users.sourceforge.net>
Signed-off-by: David Woodhouse <David.Woodhouse@intel.com>
Diffstat (limited to 'drivers/mtd/devices')
-rw-r--r-- | drivers/mtd/devices/m25p80.c | 2 | ||||
-rw-r--r-- | drivers/mtd/devices/mtd_dataflash.c | 2 |
2 files changed, 4 insertions, 0 deletions
diff --git a/drivers/mtd/devices/m25p80.c b/drivers/mtd/devices/m25p80.c index 98b0faf6696..8185b1f3e5e 100644 --- a/drivers/mtd/devices/m25p80.c +++ b/drivers/mtd/devices/m25p80.c | |||
@@ -672,6 +672,8 @@ static int __devinit m25p_probe(struct spi_device *spi) | |||
672 | flash->mtd.erasesize = info->sector_size; | 672 | flash->mtd.erasesize = info->sector_size; |
673 | } | 673 | } |
674 | 674 | ||
675 | flash->mtd.dev.parent = &spi->dev; | ||
676 | |||
675 | dev_info(&spi->dev, "%s (%lld Kbytes)\n", info->name, | 677 | dev_info(&spi->dev, "%s (%lld Kbytes)\n", info->name, |
676 | (long long)flash->mtd.size >> 10); | 678 | (long long)flash->mtd.size >> 10); |
677 | 679 | ||
diff --git a/drivers/mtd/devices/mtd_dataflash.c b/drivers/mtd/devices/mtd_dataflash.c index d95f74a93bc..62dee54af0a 100644 --- a/drivers/mtd/devices/mtd_dataflash.c +++ b/drivers/mtd/devices/mtd_dataflash.c | |||
@@ -664,6 +664,8 @@ add_dataflash_otp(struct spi_device *spi, char *name, | |||
664 | device->write = dataflash_write; | 664 | device->write = dataflash_write; |
665 | device->priv = priv; | 665 | device->priv = priv; |
666 | 666 | ||
667 | device->dev.parent = &spi->dev; | ||
668 | |||
667 | if (revision >= 'c') | 669 | if (revision >= 'c') |
668 | otp_tag = otp_setup(device, revision); | 670 | otp_tag = otp_setup(device, revision); |
669 | 671 | ||