From patchwork Tue May 14 11:15:23 2013 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Ezequiel Garcia X-Patchwork-Id: 243946 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from casper.infradead.org (casper.infradead.org [IPv6:2001:770:15f::2]) (using TLSv1.2 with cipher DHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by ozlabs.org (Postfix) with ESMTPS id 8C79C2C020E for ; Wed, 15 May 2013 18:48:27 +1000 (EST) Received: from merlin.infradead.org ([2001:4978:20e::2]) by casper.infradead.org with esmtps (Exim 4.80.1 #2 (Red Hat Linux)) id 1UcDIg-0006dO-Sk; Tue, 14 May 2013 11:22:00 +0000 Received: from localhost ([::1] helo=merlin.infradead.org) by merlin.infradead.org with esmtp (Exim 4.80.1 #2 (Red Hat Linux)) id 1UcDDU-00036m-6n; Tue, 14 May 2013 11:16:24 +0000 Received: from mail-la0-x22e.google.com ([2a00:1450:4010:c03::22e]) by merlin.infradead.org with esmtps (Exim 4.80.1 #2 (Red Hat Linux)) id 1UcDDR-00033j-TR for linux-mtd@lists.infradead.org; Tue, 14 May 2013 11:16:22 +0000 Received: by mail-la0-f46.google.com with SMTP id fk20so382659lab.5 for ; Tue, 14 May 2013 04:15:59 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=x-received:from:to:cc:subject:date:message-id:x-mailer:in-reply-to :references; bh=0Oo07yNy4TmGtIQiMOARm1E2TtkBE6a/LBU3kqPpPUA=; b=J3NSEbC09wm2TmxKBkI/+t8HTod2LJtxWCYE4aTICqWjtZNiOX3aWNsuOcyJse0Euh b10yXM65wjUN+TNNu8A7jPwQ9JWQHfhSOh+6jSJrkYQCNErvpH7nAG2Ny9LRHz3lA1PY cEynBpgJjVUVOnD23qgqMSmG+NFVeNNgmVOEO7Un/xrio8iFTYjyh9/phKq+nsbxwAsM LtAx4v5VHOKi7ggxdFM1KG2FdtGhiBNq5PAz7GDKtaf1mVPNi/0qqa2YX+h0XqWU74SE CTs6UnBzS9e5Xy2GUKOKhDk/oD3eYMGWsjOP5SkhwG5gql2eo334ELYWx7UQqD2PGpXG FCmg== X-Received: by 10.112.138.42 with SMTP id qn10mr14758350lbb.70.1368530159809; Tue, 14 May 2013 04:15:59 -0700 (PDT) Received: from localhost.localdomain (65.222.3.200.ros.express.com.ar. [200.3.222.65]) by mx.google.com with ESMTPSA id mp1sm7103669lbb.5.2013.05.14.04.15.53 for (version=TLSv1.2 cipher=ECDHE-RSA-RC4-SHA bits=128/128); Tue, 14 May 2013 04:15:58 -0700 (PDT) From: Ezequiel Garcia To: Subject: [PATCH 3/5] mtd: nand: pxa3xx: Fix MODULE_DEVICE_TABLE declaration Date: Tue, 14 May 2013 08:15:23 -0300 Message-Id: <1368530125-12959-4-git-send-email-elezegarcia@gmail.com> X-Mailer: git-send-email 1.8.1.5 In-Reply-To: <1368530125-12959-1-git-send-email-elezegarcia@gmail.com> References: <1368530125-12959-1-git-send-email-elezegarcia@gmail.com> X-CRM114-Version: 20100106-BlameMichelson ( TRE 0.8.0 (BSD) ) MR-646709E3 X-CRM114-CacheID: sfid-20130514_071622_119222_86CCEC7F X-CRM114-Status: GOOD ( 10.08 ) X-Spam-Score: -2.0 (--) X-Spam-Report: SpamAssassin version 3.3.2 on merlin.infradead.org summary: Content analysis details: (-2.0 points) pts rule name description ---- ---------------------- -------------------------------------------------- 0.0 FREEMAIL_FROM Sender email is commonly abused enduser mail provider (elezegarcia[at]gmail.com) -0.0 SPF_PASS SPF: sender matches SPF record -1.9 BAYES_00 BODY: Bayes spam probability is 0 to 1% [score: 0.0000] -0.1 DKIM_VALID_AU Message has a valid DKIM or DK signature from author's domain 0.1 DKIM_SIGNED Message has a DKIM or DK signature, not necessarily valid -0.1 DKIM_VALID Message has at least one valid DKIM or DK signature Cc: Thomas Petazzoni , Lior Amsalem , Artem Bityutskiy , Lei Wen , Haojian Zhuang , Maen Suleiman , Ezequiel Garcia , Gregory Clement , Neil Zhang , Chao Xie X-BeenThere: linux-mtd@lists.infradead.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: Linux MTD discussion mailing list List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , MIME-Version: 1.0 Sender: "linux-mtd" Errors-To: linux-mtd-bounces+incoming=patchwork.ozlabs.org@lists.infradead.org From: Ezequiel Garcia This module's device table is incorrectly declared using i2c_pxa_dt_ids, instead of pxa3xx_nand_dt_ids. Signed-off-by: Ezequiel Garcia --- drivers/mtd/nand/pxa3xx_nand.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/mtd/nand/pxa3xx_nand.c b/drivers/mtd/nand/pxa3xx_nand.c index 8386e9a..e4e697f 100644 --- a/drivers/mtd/nand/pxa3xx_nand.c +++ b/drivers/mtd/nand/pxa3xx_nand.c @@ -1185,7 +1185,7 @@ static struct of_device_id pxa3xx_nand_dt_ids[] = { { .compatible = "marvell,pxa3xx-nand" }, {} }; -MODULE_DEVICE_TABLE(of, i2c_pxa_dt_ids); +MODULE_DEVICE_TABLE(of, pxa3xx_nand_dt_ids); static int pxa3xx_nand_probe_dt(struct platform_device *pdev) {