From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from h1446028.stratoserver.net ([85.214.92.142] helo=mail.ahsoftware.de) by bombadil.infradead.org with esmtps (Exim 4.80.1 #2 (Red Hat Linux)) id 1WpAsC-0007dL-Cy for linux-mtd@lists.infradead.org; Tue, 27 May 2014 06:28:32 +0000 Received: from eiche.ahsoftware (p57B22414.dip0.t-ipconnect.de [87.178.36.20]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by mail.ahsoftware.de (Postfix) with ESMTPSA id 7940B423C2A3 for ; Tue, 27 May 2014 08:28:10 +0200 (CEST) From: Alexander Holler To: linux-kernel@vger.kernel.org Subject: [PATCH 07/27 v2] mtd: nand: gpmi: show device structure in sysfs Date: Tue, 27 May 2014 08:26:19 +0200 Message-Id: <1401171979-3868-1-git-send-email-holler@ahsoftware.de> In-Reply-To: <1401142372-14148-1-git-send-email-holler@ahsoftware.de> References: <1401142372-14148-1-git-send-email-holler@ahsoftware.de> Cc: David Woodhouse , Brian Norris , linux-mtd@lists.infradead.org, Alexander Holler List-Id: Linux MTD discussion mailing list List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Fix a common error in nand-drivers which do not set up a parent device for the mtd-device by using a new inline function. Signed-off-by: Alexander Holler --- Changes to v1: add owner to module drivers/mtd/nand/gpmi-nand/gpmi-nand.c | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/drivers/mtd/nand/gpmi-nand/gpmi-nand.c b/drivers/mtd/nand/gpmi-nand/gpmi-nand.c index bb77f75..8ca225c 100644 --- a/drivers/mtd/nand/gpmi-nand/gpmi-nand.c +++ b/drivers/mtd/nand/gpmi-nand/gpmi-nand.c @@ -1682,11 +1682,6 @@ static int gpmi_nand_init(struct gpmi_nand_data *this) /* init current chip */ this->current_chip = -1; - /* init the MTD data structures */ - mtd->priv = chip; - mtd->name = "gpmi-nand"; - mtd->owner = THIS_MODULE; - /* init the nand_chip{}, we don't support a 16-bit NAND Flash bus. */ chip->priv = this; chip->select_chip = gpmi_select_chip; @@ -1791,6 +1786,7 @@ static int gpmi_nand_probe(struct platform_device *pdev) if (ret) goto exit_nfc_init; + mtd_setup_common_members(&this->mtd, &this->nand, pdev); ret = gpmi_nand_init(this); if (ret) goto exit_nfc_init; @@ -1819,6 +1815,7 @@ static int gpmi_nand_remove(struct platform_device *pdev) static struct platform_driver gpmi_nand_driver = { .driver = { .name = "gpmi-nand", + .owner = THIS_MODULE, .of_match_table = gpmi_nand_id_table, }, .probe = gpmi_nand_probe, -- 1.8.3.2