From patchwork Wed Jul 28 05:56:02 2010 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Haojian Zhuang X-Patchwork-Id: 60088 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from bombadil.infradead.org (bombadil.infradead.org [18.85.46.34]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by ozlabs.org (Postfix) with ESMTPS id 39DDDB6F06 for ; Wed, 28 Jul 2010 15:58:33 +1000 (EST) Received: from localhost ([::1] helo=bombadil.infradead.org) by bombadil.infradead.org with esmtp (Exim 4.72 #1 (Red Hat Linux)) id 1Odzct-0002tq-1i; Wed, 28 Jul 2010 05:56:23 +0000 Received: from mail-pv0-f177.google.com ([74.125.83.177]) by bombadil.infradead.org with esmtp (Exim 4.72 #1 (Red Hat Linux)) id 1Odzca-0002pG-Bu; Wed, 28 Jul 2010 05:56:05 +0000 Received: by pvf33 with SMTP id 33so903519pvf.36 for ; Tue, 27 Jul 2010 22:56:02 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:mime-version:received:received:date:message-id :subject:from:to:content-type; bh=c7NVqvc5SctMsnIaY9GeGMqEwTSSmB+JWSAy5GV1tUw=; b=Zv0S9a3Ywugp9W2jFH5312JbbJPvjuWHCpg2nEUxuP8WKsuihXKWgMDFhKAX4AHgjo HgFqE3A7UZgeP8sm0szoOMUH3EIS8j0dMerc/uhB66VdsslYIpCLIyfhEHwU2LqtALru u9ERMc8+8w/V/k3IcA1pnxi1qpCWgcZUo+wc8= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:date:message-id:subject:from:to:content-type; b=fdsuvXLkirRVJoLm/EB5A4urxboj4toZ+0wDNIdP29Z8yL4M+cjjda5MhYSUgBsl9t eCz7PssO2K33Y950kLGkaFipkng7sRfYlQaVIc9JTUYXdsauVMeidWhPUlHzF3KAQmOC zaCerNufigx9SuGta+MRsGJJCW0XiQZOCdmc0= MIME-Version: 1.0 Received: by 10.142.139.5 with SMTP id m5mr11371569wfd.164.1280296562520; Tue, 27 Jul 2010 22:56:02 -0700 (PDT) Received: by 10.142.54.6 with HTTP; Tue, 27 Jul 2010 22:56:02 -0700 (PDT) Date: Wed, 28 Jul 2010 13:56:02 +0800 Message-ID: Subject: [PATCH 02/29] pxa3xx_nand: fix compile warning From: Haojian Zhuang To: Eric Miao , linux-arm-kernel , David Woodhouse , David Woodhouse , Marc Kleine-Budde , linux-mtd@lists.infradead.org, Lei Wen X-CRM114-Version: 20090807-BlameThorstenAndJenny ( TRE 0.7.6 (BSD) ) MR-646709E3 X-CRM114-CacheID: sfid-20100728_015604_525946_547EAC4D X-CRM114-Status: GOOD ( 13.80 ) X-Spam-Score: -0.1 (/) X-Spam-Report: SpamAssassin version 3.3.1 on bombadil.infradead.org summary: Content analysis details: (-0.1 points) pts rule name description ---- ---------------------- -------------------------------------------------- -0.0 RCVD_IN_DNSWL_NONE RBL: Sender listed at http://www.dnswl.org/, low trust [74.125.83.177 listed in list.dnswl.org] 0.0 FREEMAIL_FROM Sender email is freemail (haojian.zhuang[at]gmail.com) -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 X-BeenThere: linux-mtd@lists.infradead.org X-Mailman-Version: 2.1.12 Precedence: list List-Id: Linux MTD discussion mailing list List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: linux-mtd-bounces@lists.infradead.org Errors-To: linux-mtd-bounces+incoming=patchwork.ozlabs.org@lists.infradead.org From c374a3f27c56f9112b97960eaa3194a08db6f4a4 Mon Sep 17 00:00:00 2001 From: Lei Wen Date: Tue, 22 Jun 2010 20:19:35 +0800 Subject: [PATCH 02/29] pxa3xx_nand: fix compile warning The compile output as below: WARNING: modpost: Found 1 section mismatch(es). Signed-off-by: Lei Wen --- drivers/mtd/nand/pxa3xx_nand.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/drivers/mtd/nand/pxa3xx_nand.c b/drivers/mtd/nand/pxa3xx_nand.c index 3ffcbcd..52cec28 100644 --- a/drivers/mtd/nand/pxa3xx_nand.c +++ b/drivers/mtd/nand/pxa3xx_nand.c @@ -1069,7 +1069,7 @@ static void pxa3xx_nand_init_mtd(struct mtd_info *mtd, this->chip_delay = 25; } -static int pxa3xx_nand_probe(struct platform_device *pdev) +static int __devinit pxa3xx_nand_probe(struct platform_device *pdev) { struct pxa3xx_nand_platform_data *pdata; struct pxa3xx_nand_info *info;