From patchwork Fri May 1 15:50:02 2015 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Krzysztof Kozlowski X-Patchwork-Id: 6310681 Return-Path: X-Original-To: patchwork-linux-samsung-soc@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 DA85FBEEE1 for ; Fri, 1 May 2015 15:53:37 +0000 (UTC) Received: from mail.kernel.org (localhost [127.0.0.1]) by mail.kernel.org (Postfix) with ESMTP id 198AA2042B for ; Fri, 1 May 2015 15:53:37 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.kernel.org (Postfix) with ESMTP id 8735F20443 for ; Fri, 1 May 2015 15:53:35 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1754343AbbEAPvZ (ORCPT ); Fri, 1 May 2015 11:51:25 -0400 Received: from mail-pd0-f178.google.com ([209.85.192.178]:34786 "EHLO mail-pd0-f178.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1754320AbbEAPvX (ORCPT ); Fri, 1 May 2015 11:51:23 -0400 Received: by pdbqa5 with SMTP id qa5so95543081pdb.1; Fri, 01 May 2015 08:51:22 -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=c7OxQp+wR3TbwO+8BwfYWK4yGEU31oRW6OoxrpvN+WY=; b=uCArb8vR2esSTwdDwQQnGwuJkTWOuSjeLAMVfaW/9ea+z4oLgGkmzohlXB7XmZAvyk rbHzEU2NZob+dmlgSm5iBZv1awS0tWdt93G17VUvV1kxG9DT+7IMkiiyNTqlH8/76bCu zRUV4aPDL7dZW77mJ1roGSV5YRX1O3t6tOikECmaEynk+0dIO8CegK7yhGFFraTDe83j 8vbwtc/TJtis61NzfSAtP9RT9yp519kHdIRAZK/Hr9NloCoAfrtlcn6DZTtD7zg1jSTl Bw8tyW8WuoR7J3EQ+oHU8++Baz8fbDcr8KIin3gCg8twgO/i2gspB36II1CaEm9ah/6V 1PIw== X-Received: by 10.68.92.5 with SMTP id ci5mr18698258pbb.109.1430495482794; Fri, 01 May 2015 08:51:22 -0700 (PDT) Received: from localhost.localdomain ([125.130.175.98]) by mx.google.com with ESMTPSA id wx8sm5219714pbc.1.2015.05.01.08.51.19 (version=TLSv1.2 cipher=ECDHE-RSA-AES128-SHA bits=128/128); Fri, 01 May 2015 08:51:22 -0700 (PDT) From: Krzysztof Kozlowski To: David Woodhouse , Brian Norris , Kukjin Kim , Kyungmin Park , linux-mtd@lists.infradead.org, linux-kernel@vger.kernel.org, linux-arm-kernel@lists.infradead.org, linux-samsung-soc@vger.kernel.org Cc: Krzysztof Kozlowski Subject: [PATCH 2/3] mtd: s3c2410: Constify platform_device_id Date: Sat, 2 May 2015 00:50:02 +0900 Message-Id: <1430495403-31560-2-git-send-email-k.kozlowski.k@gmail.com> X-Mailer: git-send-email 2.1.4 In-Reply-To: <1430495403-31560-1-git-send-email-k.kozlowski.k@gmail.com> References: <1430495403-31560-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/mtd/nand/s3c2410.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/mtd/nand/s3c2410.c b/drivers/mtd/nand/s3c2410.c index 0e02be47ce1d..381f67ac6b5a 100644 --- a/drivers/mtd/nand/s3c2410.c +++ b/drivers/mtd/nand/s3c2410.c @@ -1105,7 +1105,7 @@ static int s3c24xx_nand_resume(struct platform_device *dev) /* driver device registration */ -static struct platform_device_id s3c24xx_driver_ids[] = { +static const struct platform_device_id s3c24xx_driver_ids[] = { { .name = "s3c2410-nand", .driver_data = TYPE_S3C2410,