From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mail-wi0-x244.google.com ([2a00:1450:400c:c05::244]) by casper.infradead.org with esmtps (Exim 4.80.1 #2 (Red Hat Linux)) id 1Z2mmy-0005AG-Cj for linux-mtd@lists.infradead.org; Wed, 10 Jun 2015 20:39:57 +0000 Received: by wivz2 with SMTP id z2so11955993wiv.0 for ; Wed, 10 Jun 2015 13:39:36 -0700 (PDT) From: Frans Klaver To: Brian Norris Subject: [PATCH v2 25/60] mtd: nand: bf5xx_nand: show parent device in sysfs Date: Wed, 10 Jun 2015 22:38:39 +0200 Message-Id: <1433968754-10651-26-git-send-email-fransklaver@gmail.com> In-Reply-To: <1433968754-10651-1-git-send-email-fransklaver@gmail.com> References: <1433968754-10651-1-git-send-email-fransklaver@gmail.com> Cc: linux-mtd@lists.infradead.org, Frans Klaver , David Woodhouse , linux-kernel@vger.kernel.org List-Id: Linux MTD discussion mailing list List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Fix a bug where parent device symlinks aren't shown in sysfs. While at it, make use of the default owner value set by mtdcore. Signed-off-by: Frans Klaver --- drivers/mtd/nand/bf5xx_nand.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/mtd/nand/bf5xx_nand.c b/drivers/mtd/nand/bf5xx_nand.c index 4d8d4ba..acec344 100644 --- a/drivers/mtd/nand/bf5xx_nand.c +++ b/drivers/mtd/nand/bf5xx_nand.c @@ -782,7 +782,7 @@ static int bf5xx_nand_probe(struct platform_device *pdev) /* initialise mtd info data struct */ mtd = &info->mtd; mtd->priv = chip; - mtd->owner = THIS_MODULE; + mtd->dev.parent = &pdev->dev; /* initialise the hardware */ err = bf5xx_nand_hw_init(info); -- 2.4.0