From patchwork Fri May 1 16:02:48 2015 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Krzysztof Kozlowski X-Patchwork-Id: 6311371 Return-Path: X-Original-To: patchwork-linux-samsung-soc@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 694139F443 for ; Fri, 1 May 2015 16:03:29 +0000 (UTC) Received: from mail.kernel.org (localhost [127.0.0.1]) by mail.kernel.org (Postfix) with ESMTP id AC8AF2011D for ; Fri, 1 May 2015 16:03:28 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.kernel.org (Postfix) with ESMTP id 1EF1120445 for ; Fri, 1 May 2015 16:03:27 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1030287AbbEAQDZ (ORCPT ); Fri, 1 May 2015 12:03:25 -0400 Received: from mail-pd0-f172.google.com ([209.85.192.172]:32912 "EHLO mail-pd0-f172.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1030266AbbEAQDF (ORCPT ); Fri, 1 May 2015 12:03:05 -0400 Received: by pdbnk13 with SMTP id nk13so95849226pdb.0; Fri, 01 May 2015 09:03:04 -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=4lUcQt0oZSosPI7oPCgRgPvKTPqH4mHustubF0TuwZI=; b=wvYNqGPyzANY3f83gmqRJZ4wUqkToFQReXi00W/pVNx78dBVSppOOkz/6rTyfhjAfc AiTfiNj1vo4H5AXgbSZnsLvYRgpd89gwMIJ0CRAn2UDOUumMU/TQrFsXJsgm3zOWCkAD 1UNpjbm2UbPoODKprhJYKWAGVm/LEM/XPvEClJpBiTFuYNO4ygacpQaEuP8zcf+jaM1L av3O6lmkKLZoxAI3eWtnD/4J1nWcaQPj0vMSrRiSR4YZpN3hOZ2luthqwaxzXsZrRU8T Pd6REG5MTi9zxN5Q3Y77bNhByDTXk/U0OsJsBfWUbs0xJSCmilzBS0Yvz43zYV3vqDgu ApLA== X-Received: by 10.66.55.74 with SMTP id q10mr18976859pap.94.1430496184952; Fri, 01 May 2015 09:03:04 -0700 (PDT) Received: from localhost.localdomain ([125.130.175.98]) by mx.google.com with ESMTPSA id ph4sm5238477pdb.43.2015.05.01.09.03.01 (version=TLSv1.2 cipher=ECDHE-RSA-AES128-SHA bits=128/128); Fri, 01 May 2015 09:03:04 -0700 (PDT) From: Krzysztof Kozlowski To: Kukjin Kim , Sylwester Nawrocki , Tomasz Figa , Mike Turquette , Stephen Boyd , linux-arm-kernel@lists.infradead.org, linux-samsung-soc@vger.kernel.org, linux-clk@vger.kernel.org, linux-kernel@vger.kernel.org Cc: Krzysztof Kozlowski Subject: [PATCH 2/2] clk: s3c2410: Constify platform_device_id Date: Sat, 2 May 2015 01:02:48 +0900 Message-Id: <1430496168-32408-2-git-send-email-k.kozlowski.k@gmail.com> X-Mailer: git-send-email 2.1.4 In-Reply-To: <1430496168-32408-1-git-send-email-k.kozlowski.k@gmail.com> References: <1430496168-32408-1-git-send-email-k.kozlowski.k@gmail.com> Sender: linux-samsung-soc-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-samsung-soc@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/clk/samsung/clk-s3c2410-dclk.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/clk/samsung/clk-s3c2410-dclk.c b/drivers/clk/samsung/clk-s3c2410-dclk.c index db6fddb211d4..e56df5064889 100644 --- a/drivers/clk/samsung/clk-s3c2410-dclk.c +++ b/drivers/clk/samsung/clk-s3c2410-dclk.c @@ -404,7 +404,7 @@ static struct s3c24xx_dclk_drv_data dclk_variants[] = { }, }; -static struct platform_device_id s3c24xx_dclk_driver_ids[] = { +static const struct platform_device_id s3c24xx_dclk_driver_ids[] = { { .name = "s3c2410-dclk", .driver_data = (kernel_ulong_t)&dclk_variants[S3C2410],