From patchwork Fri May 1 15:44:06 2015 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Krzysztof Kozlowski X-Patchwork-Id: 6310401 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 4C27DBEEE1 for ; Fri, 1 May 2015 15:47:12 +0000 (UTC) Received: from mail.kernel.org (localhost [127.0.0.1]) by mail.kernel.org (Postfix) with ESMTP id 8337D2039D for ; Fri, 1 May 2015 15:47:11 +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 B008020397 for ; Fri, 1 May 2015 15:47:10 +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 1YoD7o-0003ol-I8; Fri, 01 May 2015 15:45:12 +0000 Received: from mail-pa0-x230.google.com ([2607:f8b0:400e:c03::230]) by bombadil.infradead.org with esmtps (Exim 4.80.1 #2 (Red Hat Linux)) id 1YoD7P-00031W-9Q for linux-arm-kernel@lists.infradead.org; Fri, 01 May 2015 15:44:47 +0000 Received: by pabtp1 with SMTP id tp1so93956293pab.2 for ; Fri, 01 May 2015 08:44:26 -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=XHjVBr62p3P1Jo53+ML+5mgvaAnFoeOivwUrIuFjsnE=; b=d/9fosrq/mzySiYIakFZZQsOBKpgqlODPdsypIyYbTb5eVYfuYYiUKJShvNTprF+DK H15/galuE47wvswMWlVrIv63n5pYMM16u1aHEc+d1x3u/xQIABG1nw6dXVSq1bAOrclu nLkNiiMnpuLhg8wz0o0PbCyRfy8WqiEwLZkLkIMRyr0mbo3JDaLbWTIWsPVwmPO7L92j aQyncsES6TF9DzgiU3+kew7tqcCHguwu1OgMJQqpuNh2lNbQecqwgFF6Y3at3ZbIwh/m jXOy8hZXPqxsrh2UeJEXv+ivkLbhsTJkYX/iTvzVi4XLQXAXTEvrzuxmzkqg7DqvYKUh Shrw== X-Received: by 10.70.101.106 with SMTP id ff10mr18989125pdb.162.1430495066136; Fri, 01 May 2015 08:44:26 -0700 (PDT) Received: from localhost.localdomain ([125.130.175.98]) by mx.google.com with ESMTPSA id pf10sm5173221pbb.93.2015.05.01.08.44.22 (version=TLSv1.2 cipher=ECDHE-RSA-AES128-SHA bits=128/128); Fri, 01 May 2015 08:44:25 -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 Subject: [PATCH 3/4] spi: s3c64xx: Constify platform_device_id Date: Sat, 2 May 2015 00:44:06 +0900 Message-Id: <1430495047-31122-3-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> X-CRM114-Version: 20100106-BlameMichelson ( TRE 0.8.0 (BSD) ) MR-646709E3 X-CRM114-CacheID: sfid-20150501_084447_409656_3DCE0224 X-CRM114-Status: GOOD ( 10.35 ) 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/spi/spi-s3c64xx.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/spi/spi-s3c64xx.c b/drivers/spi/spi-s3c64xx.c index b1c6731fbf27..2a8c513c4d07 100644 --- a/drivers/spi/spi-s3c64xx.c +++ b/drivers/spi/spi-s3c64xx.c @@ -1347,7 +1347,7 @@ static struct s3c64xx_spi_port_config exynos7_spi_port_config = { .quirks = S3C64XX_SPI_QUIRK_CS_AUTO, }; -static struct platform_device_id s3c64xx_spi_driver_ids[] = { +static const struct platform_device_id s3c64xx_spi_driver_ids[] = { { .name = "s3c2443-spi", .driver_data = (kernel_ulong_t)&s3c2443_spi_port_config,