mtd: nand: omap2: show parent device structure in sysfs

Linux-MTD Mailing List linux-mtd at lists.infradead.org
Fri Nov 6 10:59:20 PST 2015


Gitweb:     http://git.infradead.org/?p=mtd-2.6.git;a=commit;h=853f1c58c4b2a6f1ec81c335c82d0252b387ab1e
Commit:     853f1c58c4b2a6f1ec81c335c82d0252b387ab1e
Parent:     61344d074f4f924cf35aeee445568d9b7750d915
Author:     Frans Klaver <fransklaver at gmail.com>
AuthorDate: Wed Jun 10 22:38:57 2015 +0200
Committer:  Brian Norris <computersforpeace at gmail.com>
CommitDate: Tue Oct 13 12:56:41 2015 -0700

    mtd: nand: omap2: show parent device structure in sysfs
    
    Make sure the device structure is properly shown in sysfs by properly
    filling in dev.parent.
    
    While at it, make use of the default owner and name values set by
    mtdcore.
    
    Signed-off-by: Frans Klaver <fransklaver at gmail.com>
    Signed-off-by: Brian Norris <computersforpeace at gmail.com>
---
 drivers/mtd/nand/omap2.c | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/drivers/mtd/nand/omap2.c b/drivers/mtd/nand/omap2.c
index 60fa899..7fbf009 100644
--- a/drivers/mtd/nand/omap2.c
+++ b/drivers/mtd/nand/omap2.c
@@ -1684,8 +1684,7 @@ static int omap_nand_probe(struct platform_device *pdev)
 	info->ecc_opt		= pdata->ecc_opt;
 	mtd			= &info->mtd;
 	mtd->priv		= &info->nand;
-	mtd->name		= dev_name(&pdev->dev);
-	mtd->owner		= THIS_MODULE;
+	mtd->dev.parent		= &pdev->dev;
 	nand_chip		= &info->nand;
 	nand_chip->ecc.priv	= NULL;
 



More information about the linux-mtd-cvs mailing list