From patchwork Fri May 1 15:54:28 2015 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Krzysztof Kozlowski X-Patchwork-Id: 6311501 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 A560CBEEE1 for ; Fri, 1 May 2015 16:07:30 +0000 (UTC) Received: from mail.kernel.org (localhost [127.0.0.1]) by mail.kernel.org (Postfix) with ESMTP id DB69B203C1 for ; Fri, 1 May 2015 16:07:29 +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 1FEA5203C3 for ; Fri, 1 May 2015 16:07:29 +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 1YoDQb-0004mp-2T; Fri, 01 May 2015 16:04:37 +0000 Received: from mail-pa0-x233.google.com ([2607:f8b0:400e:c03::233]) by bombadil.infradead.org with esmtps (Exim 4.80.1 #2 (Red Hat Linux)) id 1YoDHU-0003iX-Pj for linux-arm-kernel@lists.infradead.org; Fri, 01 May 2015 15:55:13 +0000 Received: by pacyx8 with SMTP id yx8so94204491pac.1 for ; Fri, 01 May 2015 08:54:49 -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=KXar6XCffEQzXb6FKYh+bO0FFWNbswTEFSHmv+Vkp2M=; b=nTFKRQNKcxejlej5F6OnyvpSXKDlSVj5ja2ka7bsoMf4juY6Q1iG6KYMkHr/ZvXZUO FNDOL0wDYa1d9v8ssJexLKyzoAFyrmSMKEpHmGbgKbwb5Cj1R+n2wjAu/NdCu6gIaWXD zjxEW7bTl1mfbGYXj9wJU8lszRIzdC50TTWSFzCUcEPuF5Kx7kUoDuN7iz14vg4bonSg JpLQbnwCiZivCGOFA84g8Y0NkPA1JUMKQVgbzkKIK5zuGN7/pYN2tz9ZAbQ//tzzo0jW omFuCI8JSl34TvCcV9aA19R1JcH73BU4vCNPvv8XDAO2zVH5zU4dY0p6a4I3fDWWV9r4 sw0g== X-Received: by 10.66.147.228 with SMTP id tn4mr19194987pab.117.1430495689306; Fri, 01 May 2015 08:54:49 -0700 (PDT) Received: from localhost.localdomain ([125.130.175.98]) by mx.google.com with ESMTPSA id y2sm2530350pdk.67.2015.05.01.08.54.46 (version=TLSv1.2 cipher=ECDHE-RSA-AES128-SHA bits=128/128); Fri, 01 May 2015 08:54:48 -0700 (PDT) From: Krzysztof Kozlowski To: Wolfram Sang , Kukjin Kim , linux-i2c@vger.kernel.org, linux-kernel@vger.kernel.org, linux-arm-kernel@lists.infradead.org, linux-samsung-soc@vger.kernel.org Subject: [PATCH 4/4] i2c: s4c2410: Constify platform_device_id Date: Sat, 2 May 2015 00:54:28 +0900 Message-Id: <1430495668-31878-4-git-send-email-k.kozlowski.k@gmail.com> X-Mailer: git-send-email 2.1.4 In-Reply-To: <1430495668-31878-1-git-send-email-k.kozlowski.k@gmail.com> References: <1430495668-31878-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_085512_882915_58BA2F6A X-CRM114-Status: GOOD ( 11.13 ) 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/i2c/busses/i2c-s3c2410.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/i2c/busses/i2c-s3c2410.c b/drivers/i2c/busses/i2c-s3c2410.c index 958c8db4ec30..c1f0e62d1bb1 100644 --- a/drivers/i2c/busses/i2c-s3c2410.c +++ b/drivers/i2c/busses/i2c-s3c2410.c @@ -132,7 +132,7 @@ struct s3c24xx_i2c { unsigned int sys_i2c_cfg; }; -static struct platform_device_id s3c24xx_driver_ids[] = { +static const struct platform_device_id s3c24xx_driver_ids[] = { { .name = "s3c2410-i2c", .driver_data = 0,