From patchwork Fri May 1 15:50:01 2015 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Krzysztof Kozlowski X-Patchwork-Id: 6310781 Return-Path: X-Original-To: patchwork-linux-arm@patchwork.kernel.org Delivered-To: patchwork-parsemail@patchwork2.web.kernel.org Received: from mail.kernel.org (mail.kernel.org [198.145.29.136]) by patchwork2.web.kernel.org (Postfix) with ESMTP id 422A8BEEE1 for ; Fri, 1 May 2015 15:54:37 +0000 (UTC) Received: from mail.kernel.org (localhost [127.0.0.1]) by mail.kernel.org (Postfix) with ESMTP id 75D622042B for ; Fri, 1 May 2015 15:54:36 +0000 (UTC) Received: from bombadil.infradead.org (bombadil.infradead.org [198.137.202.9]) (using TLSv1.2 with cipher DHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mail.kernel.org (Postfix) with ESMTPS id A958E2039D for ; Fri, 1 May 2015 15:54:35 +0000 (UTC) Received: from localhost ([127.0.0.1] helo=bombadil.infradead.org) by bombadil.infradead.org with esmtp (Exim 4.80.1 #2 (Red Hat Linux)) id 1YoDEy-0001vq-Mc; Fri, 01 May 2015 15:52:36 +0000 Received: from mail-pa0-x236.google.com ([2607:f8b0:400e:c03::236]) by bombadil.infradead.org with esmtps (Exim 4.80.1 #2 (Red Hat Linux)) id 1YoDE2-0001HX-FL; Fri, 01 May 2015 15:51:39 +0000 Received: by pacwv17 with SMTP id wv17so94206097pac.0; Fri, 01 May 2015 08:51:19 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=from:to:cc:subject:date:message-id; bh=cIjuGKwXX6K/WyHPKc0klCVU8ixZjpAOsQY9wJohW/w=; b=dy74YAjGhsXQPrw54TooBPuxoUp+bwCS/9s1gh+Xyr0lvedzrwfoFnIdgbhlfS9Nm3 B9oD9iB4tL2A4h8tpardcsiDvEf4TXRxjCqI7E3aLVK/la+BvMKpGZeAw4+0lEc5BmTd zAafUFsvUq6rDbCmpbI/WWKZcR3neh+IFyiOTeO9Ct23ikygKqoTHrnxF/eHR9+KD8MC 3PIbIAzmTcqmhk7p+15K3cCi0QsVA8ArOXCZV1fUqVLRta7pABHfAvFjCnEZGQL2JtwP tg6r04zufNzGHJxuEQMsLoT9KFvVgNxFDR4fyyGlk8XB+VeWQqvXY5nRO/OEQ7IMEVW5 ovdg== X-Received: by 10.70.103.10 with SMTP id fs10mr18652240pdb.141.1430495479465; Fri, 01 May 2015 08:51:19 -0700 (PDT) Received: from localhost.localdomain ([125.130.175.98]) by mx.google.com with ESMTPSA id wx8sm5219714pbc.1.2015.05.01.08.51.16 (version=TLSv1.2 cipher=ECDHE-RSA-AES128-SHA bits=128/128); Fri, 01 May 2015 08:51:18 -0700 (PDT) From: Krzysztof Kozlowski To: David Woodhouse , Brian Norris , Kukjin Kim , Kyungmin Park , linux-mtd@lists.infradead.org, linux-kernel@vger.kernel.org, linux-arm-kernel@lists.infradead.org, linux-samsung-soc@vger.kernel.org Subject: [PATCH 1/3] mtd: mxc-nand: Constify platform_device_id Date: Sat, 2 May 2015 00:50:01 +0900 Message-Id: <1430495403-31560-1-git-send-email-k.kozlowski.k@gmail.com> X-Mailer: git-send-email 2.1.4 X-CRM114-Version: 20100106-BlameMichelson ( TRE 0.8.0 (BSD) ) MR-646709E3 X-CRM114-CacheID: sfid-20150501_085138_601042_EB86A8F3 X-CRM114-Status: UNSURE ( 9.26 ) X-CRM114-Notice: Please train this message. X-Spam-Score: -0.8 (/) Cc: Krzysztof Kozlowski X-BeenThere: linux-arm-kernel@lists.infradead.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , MIME-Version: 1.0 Sender: "linux-arm-kernel" Errors-To: linux-arm-kernel-bounces+patchwork-linux-arm=patchwork.kernel.org@lists.infradead.org X-Spam-Status: No, score=-4.1 required=5.0 tests=BAYES_00, DKIM_ADSP_CUSTOM_MED, DKIM_SIGNED, FREEMAIL_FROM, RCVD_IN_DNSWL_MED, T_DKIM_INVALID, T_RP_MATCHES_RCVD, UNPARSEABLE_RELAY autolearn=ham version=3.3.1 X-Spam-Checker-Version: SpamAssassin 3.3.1 (2010-03-16) on mail.kernel.org X-Virus-Scanned: ClamAV using ClamSMTP The platform_device_id is not modified by the driver and core uses it as const. Signed-off-by: Krzysztof Kozlowski --- drivers/mtd/nand/mxc_nand.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/mtd/nand/mxc_nand.c b/drivers/mtd/nand/mxc_nand.c index 372e0e38f59b..2c46489eeee0 100644 --- a/drivers/mtd/nand/mxc_nand.c +++ b/drivers/mtd/nand/mxc_nand.c @@ -1350,7 +1350,7 @@ static inline int is_imx53_nfc(struct mxc_nand_host *host) return host->devtype_data == &imx53_nand_devtype_data; } -static struct platform_device_id mxcnd_devtype[] = { +static const struct platform_device_id mxcnd_devtype[] = { { .name = "imx21-nand", .driver_data = (kernel_ulong_t) &imx21_nand_devtype_data,