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/nand | |
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/nand')
-rw-r--r-- | drivers/mtd/nand/davinci_nand.c | 2 | ||||
-rw-r--r-- | drivers/mtd/nand/mxc_nand.c | 1 |
2 files changed, 3 insertions, 0 deletions
diff --git a/drivers/mtd/nand/davinci_nand.c b/drivers/mtd/nand/davinci_nand.c index 81f7ecd23c60..0119220de7d0 100644 --- a/drivers/mtd/nand/davinci_nand.c +++ b/drivers/mtd/nand/davinci_nand.c | |||
@@ -343,6 +343,8 @@ static int __init nand_davinci_probe(struct platform_device *pdev) | |||
343 | info->mtd.name = dev_name(&pdev->dev); | 343 | info->mtd.name = dev_name(&pdev->dev); |
344 | info->mtd.owner = THIS_MODULE; | 344 | info->mtd.owner = THIS_MODULE; |
345 | 345 | ||
346 | info->mtd.dev.parent = &pdev->dev; | ||
347 | |||
346 | info->chip.IO_ADDR_R = vaddr; | 348 | info->chip.IO_ADDR_R = vaddr; |
347 | info->chip.IO_ADDR_W = vaddr; | 349 | info->chip.IO_ADDR_W = vaddr; |
348 | info->chip.chip_delay = 0; | 350 | info->chip.chip_delay = 0; |
diff --git a/drivers/mtd/nand/mxc_nand.c b/drivers/mtd/nand/mxc_nand.c index 21fd4f1c4806..bfde74a9ba6b 100644 --- a/drivers/mtd/nand/mxc_nand.c +++ b/drivers/mtd/nand/mxc_nand.c | |||
@@ -866,6 +866,7 @@ static int __init mxcnd_probe(struct platform_device *pdev) | |||
866 | mtd = &host->mtd; | 866 | mtd = &host->mtd; |
867 | mtd->priv = this; | 867 | mtd->priv = this; |
868 | mtd->owner = THIS_MODULE; | 868 | mtd->owner = THIS_MODULE; |
869 | mtd->dev.parent = &pdev->dev; | ||
869 | 870 | ||
870 | /* 50 us command delay time */ | 871 | /* 50 us command delay time */ |
871 | this->chip_delay = 5; | 872 | this->chip_delay = 5; |