From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mail-wg0-f66.google.com ([74.125.82.66]) by bombadil.infradead.org with esmtps (Exim 4.80.1 #2 (Red Hat Linux)) id 1Z2mmt-0000Bu-QM for linux-mtd@lists.infradead.org; Wed, 10 Jun 2015 20:39:52 +0000 Received: by wggy19 with SMTP id y19so8935958wgg.0 for ; Wed, 10 Jun 2015 13:39:29 -0700 (PDT) From: Frans Klaver To: Brian Norris Subject: [PATCH v2 19/60] mtd: maps: pxa2xx-flash: show parent device in sysfs Date: Wed, 10 Jun 2015 22:38:33 +0200 Message-Id: <1433968754-10651-20-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 mtd 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/maps/pxa2xx-flash.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/mtd/maps/pxa2xx-flash.c b/drivers/mtd/maps/pxa2xx-flash.c index 12fa75d..9adc4ef 100644 --- a/drivers/mtd/maps/pxa2xx-flash.c +++ b/drivers/mtd/maps/pxa2xx-flash.c @@ -93,7 +93,7 @@ static int pxa2xx_flash_probe(struct platform_device *pdev) iounmap(info->map.cached); return -EIO; } - info->mtd->owner = THIS_MODULE; + info->mtd->dev.parent = &pdev->dev; mtd_device_parse_register(info->mtd, probes, NULL, flash->parts, flash->nr_parts); -- 2.4.0