From patchwork Fri May 1 15:49:21 2015 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Krzysztof Kozlowski X-Patchwork-Id: 6310571 Return-Path: X-Original-To: patchwork-linux-mmc@patchwork.kernel.org Delivered-To: patchwork-parsemail@patchwork1.web.kernel.org Received: from mail.kernel.org (mail.kernel.org [198.145.29.136]) by patchwork1.web.kernel.org (Postfix) with ESMTP id 36E279F32B for ; Fri, 1 May 2015 15:52:18 +0000 (UTC) Received: from mail.kernel.org (localhost [127.0.0.1]) by mail.kernel.org (Postfix) with ESMTP id 6334920439 for ; Fri, 1 May 2015 15:52:17 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.kernel.org (Postfix) with ESMTP id 7F1462042B for ; Fri, 1 May 2015 15:52:16 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1753823AbbEAPwO (ORCPT ); Fri, 1 May 2015 11:52:14 -0400 Received: from mail-pd0-f176.google.com ([209.85.192.176]:33935 "EHLO mail-pd0-f176.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1754338AbbEAPvb (ORCPT ); Fri, 1 May 2015 11:51:31 -0400 Received: by pdbqa5 with SMTP id qa5so95546332pdb.1; Fri, 01 May 2015 08:51:30 -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:in-reply-to:references; bh=GsNiLRBKtXe3ulv0Sh9mL4Duda06YhALBpEpD92cSX4=; b=l3KS70rnAOcyAwNeAccmzTT7+gS/afsXB8tG+QabrgWHMdRCg8Gqxt5miCYwpLEqNz fUmSNLKDelObp0yXAkvkBeQhDRKCCPoTy3DwKBCPatqjszsjhTw6ZhKA2id5W/qrz5Hv CfuXPqwzmt1CT7HXmwZjS8wvxqT0no1gZlppd42AyTWsovqs7GYRnKjOcUnV9locBhEr vMmpQvPWjA9lPxm3VwgZ1gtrfkUMnEH1Hb78fz2+JbJGggGRZQ7gIydPeK1XtLgEVMyT FEiacjtsKacVMaalCd/t+keYqM7aKKjkuhg1SfAWbesA7Bt5aylk2l7L6U4dVivHl+1f 3DFQ== X-Received: by 10.70.89.199 with SMTP id bq7mr18557165pdb.168.1430495490572; Fri, 01 May 2015 08:51:30 -0700 (PDT) Received: from localhost.localdomain ([125.130.175.98]) by mx.google.com with ESMTPSA id ia3sm5208714pbc.31.2015.05.01.08.51.27 (version=TLSv1.2 cipher=ECDHE-RSA-AES128-SHA bits=128/128); Fri, 01 May 2015 08:51:29 -0700 (PDT) From: Krzysztof Kozlowski To: Ulf Hansson , linux-mmc@vger.kernel.org, linux-kernel@vger.kernel.org, linux-arm-kernel@lists.infradead.org, Ben Dooks , Jaehoon Chung Cc: Krzysztof Kozlowski Subject: [PATCH 5/6] mmc: sdhci-imx: Constify platform_device_id Date: Sat, 2 May 2015 00:49:21 +0900 Message-Id: <1430495362-31506-5-git-send-email-k.kozlowski.k@gmail.com> X-Mailer: git-send-email 2.1.4 In-Reply-To: <1430495362-31506-1-git-send-email-k.kozlowski.k@gmail.com> References: <1430495362-31506-1-git-send-email-k.kozlowski.k@gmail.com> Sender: linux-mmc-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-mmc@vger.kernel.org X-Spam-Status: No, score=-6.8 required=5.0 tests=BAYES_00, DKIM_ADSP_CUSTOM_MED, DKIM_SIGNED, FREEMAIL_FROM, RCVD_IN_DNSWL_HI, 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/mmc/host/sdhci-esdhc-imx.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/mmc/host/sdhci-esdhc-imx.c b/drivers/mmc/host/sdhci-esdhc-imx.c index 82f512d87cb8..7b6ff7067320 100644 --- a/drivers/mmc/host/sdhci-esdhc-imx.c +++ b/drivers/mmc/host/sdhci-esdhc-imx.c @@ -161,7 +161,7 @@ struct pltfm_imx_data { u32 is_ddr; }; -static struct platform_device_id imx_esdhc_devtype[] = { +static const struct platform_device_id imx_esdhc_devtype[] = { { .name = "sdhci-esdhc-imx25", .driver_data = (kernel_ulong_t) &esdhc_imx25_data,