From patchwork Fri May 1 15:38:40 2015 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Krzysztof Kozlowski X-Patchwork-Id: 6310181 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 0AA29BEEE5 for ; Fri, 1 May 2015 15:41:55 +0000 (UTC) Received: from mail.kernel.org (localhost [127.0.0.1]) by mail.kernel.org (Postfix) with ESMTP id 432052043C for ; Fri, 1 May 2015 15:41:54 +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 3E3D72044C for ; Fri, 1 May 2015 15:41:53 +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 1YoD2O-0007pQ-Lh; Fri, 01 May 2015 15:39:36 +0000 Received: from mail-pa0-x235.google.com ([2607:f8b0:400e:c03::235]) by bombadil.infradead.org with esmtps (Exim 4.80.1 #2 (Red Hat Linux)) id 1YoD29-0007fj-T0 for linux-arm-kernel@lists.infradead.org; Fri, 01 May 2015 15:39:22 +0000 Received: by pabtp1 with SMTP id tp1so93837877pab.2 for ; Fri, 01 May 2015 08:39:00 -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=pbMyVszCVbYX/8BClDmuNahlVMn8n3ZrF+umAWwDH9Q=; b=FIPYye/JkkYqScGtYaBnRU7PjX9+IHKFMlhtFvrt+aqT0TVeOaDygz1EbEiJpuG1DU OtD68jDWws4sPvfl9XbGqwkwJfmETyYG+unhQXbfBnhFP68TuNOBk5ve2qrWckVZbMC3 Q9rx0j+4d7CP8ePOf08/ctTJO/wC141elIs1zXgH6U2frIcgWgDwCg9hC3TNLqpGnCM4 ADWsRRDVQok40yY7p6L42q0JYQIBVcJZlqRarXX82xym/Z9NqmnK4R6rMd+hkyi94mj2 G9WGyBrBsPSmjBN041yQbrO9aQKxahRbGiIpHlXr310FMbhpz/gqCrqXKS6qD9YVDNI4 15YA== X-Received: by 10.68.57.201 with SMTP id k9mr18807416pbq.135.1430494740764; Fri, 01 May 2015 08:39:00 -0700 (PDT) Received: from localhost.localdomain ([125.130.175.98]) by mx.google.com with ESMTPSA id fm3sm5195987pdb.28.2015.05.01.08.38.57 (version=TLSv1.2 cipher=ECDHE-RSA-AES128-SHA bits=128/128); Fri, 01 May 2015 08:39:00 -0700 (PDT) From: Krzysztof Kozlowski To: Support Opensource , Jingoo Han , Lee Jones , Jean-Christophe Plagniol-Villard , Tomi Valkeinen , Sascha Hauer , linux-fbdev@vger.kernel.org, linux-kernel@vger.kernel.org, linux-arm-kernel@lists.infradead.org Subject: [PATCH 3/4] video: fbdev: mxsfb: Constify platform_device_id Date: Sat, 2 May 2015 00:38:40 +0900 Message-Id: <1430494721-30793-3-git-send-email-k.kozlowski.k@gmail.com> X-Mailer: git-send-email 2.1.4 In-Reply-To: <1430494721-30793-1-git-send-email-k.kozlowski.k@gmail.com> References: <1430494721-30793-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_083921_985048_6D65E4AE X-CRM114-Status: GOOD ( 10.57 ) 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/video/fbdev/mxsfb.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/video/fbdev/mxsfb.c b/drivers/video/fbdev/mxsfb.c index f8ac4a452f26..497971c82bb1 100644 --- a/drivers/video/fbdev/mxsfb.c +++ b/drivers/video/fbdev/mxsfb.c @@ -814,7 +814,7 @@ static void mxsfb_free_videomem(struct mxsfb_info *host) free_pages_exact(fb_info->screen_base, fb_info->fix.smem_len); } -static struct platform_device_id mxsfb_devtype[] = { +static const struct platform_device_id mxsfb_devtype[] = { { .name = "imx23-fb", .driver_data = MXSFB_V3,