From patchwork Fri May 1 15:49:20 2015 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Krzysztof Kozlowski X-Patchwork-Id: 6310601 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 9A7CF9F32B for ; Fri, 1 May 2015 15:52:38 +0000 (UTC) Received: from mail.kernel.org (localhost [127.0.0.1]) by mail.kernel.org (Postfix) with ESMTP id C7B2220443 for ; Fri, 1 May 2015 15:52:37 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.kernel.org (Postfix) with ESMTP id EA25F2042B for ; Fri, 1 May 2015 15:52:36 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1754562AbbEAPwf (ORCPT ); Fri, 1 May 2015 11:52:35 -0400 Received: from mail-pa0-f54.google.com ([209.85.220.54]:34629 "EHLO mail-pa0-f54.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1754376AbbEAPv1 (ORCPT ); Fri, 1 May 2015 11:51:27 -0400 Received: by pacyx8 with SMTP id yx8so94132755pac.1; Fri, 01 May 2015 08:51:27 -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=nBJZKpZ37DR3vkjVX5etc/SEB+jhhQ1c3GwSF5EXO2E=; b=LSAidEp1HdFGvf2v4xZhU/D+71LSC+UJq74P71FxEwPpOBykyLOrfId5RWXKAfcfEh A0YR/S1D8XfV5YkcLQ4nWEjr/LZBH8Ek15D/bzUfWDqtBnnd58bPWPqCngj9EziZEjg+ /iKNdohdWY/GAHzYxtLmR2T9IAmFU51Za2qScHoES9ICkdRSVb+ViokoVAbwV/B5Om5F bIBaLCwqTB7X8NdbSIce+EcMPR1E9imMveSiKlEyqyN4dMfz3f1NBNyq77zXRWgDlz5C oaO6n36Q8bRPD+zvL1bh9+bkTvka8wjZnQfCOHqKRRa82ReKK/EpaofPJ/eaSKQ+uAS4 UGVQ== X-Received: by 10.70.51.67 with SMTP id i3mr18910954pdo.145.1430495487346; Fri, 01 May 2015 08:51:27 -0700 (PDT) Received: from localhost.localdomain ([125.130.175.98]) by mx.google.com with ESMTPSA id ia3sm5208714pbc.31.2015.05.01.08.51.24 (version=TLSv1.2 cipher=ECDHE-RSA-AES128-SHA bits=128/128); Fri, 01 May 2015 08:51:26 -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 4/6] mmc: s3cmci: Constify platform_device_id Date: Sat, 2 May 2015 00:49:20 +0900 Message-Id: <1430495362-31506-4-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/s3cmci.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/mmc/host/s3cmci.c b/drivers/mmc/host/s3cmci.c index 94cddf381ba3..6291d5042ef2 100644 --- a/drivers/mmc/host/s3cmci.c +++ b/drivers/mmc/host/s3cmci.c @@ -1856,7 +1856,7 @@ static int s3cmci_remove(struct platform_device *pdev) return 0; } -static struct platform_device_id s3cmci_driver_ids[] = { +static const struct platform_device_id s3cmci_driver_ids[] = { { .name = "s3c2410-sdi", .driver_data = 0,