From patchwork Fri May 1 15:44:07 2015 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Krzysztof Kozlowski X-Patchwork-Id: 6310271 Return-Path: X-Original-To: patchwork-linux-spi@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 7D1DBBEEE1 for ; Fri, 1 May 2015 15:44:54 +0000 (UTC) Received: from mail.kernel.org (localhost [127.0.0.1]) by mail.kernel.org (Postfix) with ESMTP id B545F2039D for ; Fri, 1 May 2015 15:44:52 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.kernel.org (Postfix) with ESMTP id CE33520154 for ; Fri, 1 May 2015 15:44:51 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S964817AbbEAPod (ORCPT ); Fri, 1 May 2015 11:44:33 -0400 Received: from mail-pa0-f51.google.com ([209.85.220.51]:34704 "EHLO mail-pa0-f51.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S964816AbbEAPo3 (ORCPT ); Fri, 1 May 2015 11:44:29 -0400 Received: by pacyx8 with SMTP id yx8so93979781pac.1; Fri, 01 May 2015 08:44:29 -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=lMMO2E+SKtekNLd7Q7kmJy5QglM8Qu/ZXa654KQziBk=; b=KmhdHdCJ739t3ctk1p3HKrxB+enjZLrOpKTIpxWqN7JPGY0jrBPsDWlztSoD7sqp7a NZzoBvEu0bSY1kxI4CraB9Lq2tnq0nRyxxV3ZGSJelx9DhVwwV/K8g+9LGSyA6+MrGja 1iiSbXuziMesaVivtgHI+AFDm8ttBIH7Gprns3HCX9tPS94G1FZn6GMqqfjNahSinGee WvGd0fnPF/olZNKDZrG9ADFh2kQckRIcJGSPnsOrqSdbAGBzE57U/PY4/NAI2YLJiF8k g1682M71RN0RgSGCi7r7oIcNoh0RgpPFPFAo8ICCEejUYTdH1MiV2SLi0gPQvxb+kr7s dfQQ== X-Received: by 10.68.213.135 with SMTP id ns7mr159815pbc.157.1430495069443; Fri, 01 May 2015 08:44:29 -0700 (PDT) Received: from localhost.localdomain ([125.130.175.98]) by mx.google.com with ESMTPSA id pf10sm5173221pbb.93.2015.05.01.08.44.26 (version=TLSv1.2 cipher=ECDHE-RSA-AES128-SHA bits=128/128); Fri, 01 May 2015 08:44:28 -0700 (PDT) From: Krzysztof Kozlowski To: Mark Brown , Kukjin Kim , linux-spi@vger.kernel.org, linux-kernel@vger.kernel.org, linux-arm-kernel@lists.infradead.org, linux-samsung-soc@vger.kernel.org Cc: Krzysztof Kozlowski Subject: [PATCH 4/4] spi: sh-msiof: Constify platform_device_id Date: Sat, 2 May 2015 00:44:07 +0900 Message-Id: <1430495047-31122-4-git-send-email-k.kozlowski.k@gmail.com> X-Mailer: git-send-email 2.1.4 In-Reply-To: <1430495047-31122-1-git-send-email-k.kozlowski.k@gmail.com> References: <1430495047-31122-1-git-send-email-k.kozlowski.k@gmail.com> Sender: linux-spi-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-spi@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/spi/spi-sh-msiof.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/spi/spi-sh-msiof.c b/drivers/spi/spi-sh-msiof.c index bcc7c635d8e7..d3370a612d84 100644 --- a/drivers/spi/spi-sh-msiof.c +++ b/drivers/spi/spi-sh-msiof.c @@ -1263,7 +1263,7 @@ static int sh_msiof_spi_remove(struct platform_device *pdev) return 0; } -static struct platform_device_id spi_driver_ids[] = { +static const struct platform_device_id spi_driver_ids[] = { { "spi_sh_msiof", (kernel_ulong_t)&sh_data }, { "spi_r8a7790_msiof", (kernel_ulong_t)&r8a779x_data }, { "spi_r8a7791_msiof", (kernel_ulong_t)&r8a779x_data },