From patchwork Mon Apr 27 12:50:46 2015 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Krzysztof Kozlowski X-Patchwork-Id: 6280271 Return-Path: X-Original-To: patchwork-linux-arm@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 C13A49F389 for ; Mon, 27 Apr 2015 12:53:29 +0000 (UTC) Received: from mail.kernel.org (localhost [127.0.0.1]) by mail.kernel.org (Postfix) with ESMTP id 0D278203DB for ; Mon, 27 Apr 2015 12:53: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 4614B203B7 for ; Mon, 27 Apr 2015 12:53:28 +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 1YmiVX-0007a7-Ke; Mon, 27 Apr 2015 12:51:31 +0000 Received: from mail-pa0-x236.google.com ([2607:f8b0:400e:c03::236]) by bombadil.infradead.org with esmtps (Exim 4.80.1 #2 (Red Hat Linux)) id 1YmiVS-0007TC-TZ for linux-arm-kernel@lists.infradead.org; Mon, 27 Apr 2015 12:51:27 +0000 Received: by pacwv17 with SMTP id wv17so106462413pac.0 for ; Mon, 27 Apr 2015 05:51:05 -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; bh=RqJ7c6yQ5eCxjfw8YqoS8DRpPp6IW0GIt9GQWCKiO6Y=; b=ikT/190TmzEbzFbG0XiG7lEVyTIcpenac6PESEOMEbTgQE6P7luu1N1H5Ej++7pwIA eH71G5kVcDxa2Mci81Z8uOw4LrlmfV+FX2uF3JiuYvMmfCmtb+zOaKoTLk8BFjUMuVMx 1HOd8hk1CuhfC/qQD2OBpafhz4C6VCAGnh6Xp3PHBjkGwueVkirhghXrMwhju0ihIKf3 R+3EuohYNtb253lrAKZOns735Qd5h93OEmFdMkll/yr5+cWIs9wRpesRtJAYpPBIHUtc dKbu0WwdODoa+1aj2TAITfIp57s+D4RuCt2aZOHzZlRqVA1OhhVac85ls2ZFIXgfvb88 WEpQ== X-Received: by 10.70.118.5 with SMTP id ki5mr22329040pdb.6.1430139065282; Mon, 27 Apr 2015 05:51:05 -0700 (PDT) Received: from localhost.localdomain ([125.130.175.98]) by mx.google.com with ESMTPSA id u8sm3613518pdi.90.2015.04.27.05.51.02 (version=TLSv1.2 cipher=ECDHE-RSA-AES128-SHA bits=128/128); Mon, 27 Apr 2015 05:51:04 -0700 (PDT) From: Krzysztof Kozlowski To: Daniel Mack , Haojian Zhuang , Robert Jarzmik , linux-arm-kernel@lists.infradead.org, linux-kernel@vger.kernel.org Subject: [PATCH] ARM: pxa: Constify irq_domain_ops Date: Mon, 27 Apr 2015 21:50:46 +0900 Message-Id: <1430139046-3618-1-git-send-email-k.kozlowski.k@gmail.com> X-Mailer: git-send-email 2.1.0 X-CRM114-Version: 20100106-BlameMichelson ( TRE 0.8.0 (BSD) ) MR-646709E3 X-CRM114-CacheID: sfid-20150427_055127_023415_FDF08B3C X-CRM114-Status: GOOD ( 11.37 ) 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 irq_domain_ops are not modified by the driver and the irqdomain core code accepts pointer to a const data. Signed-off-by: Krzysztof Kozlowski --- arch/arm/mach-pxa/irq.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/arch/arm/mach-pxa/irq.c b/arch/arm/mach-pxa/irq.c index 89a7c06570d3..98608c5575cb 100644 --- a/arch/arm/mach-pxa/irq.c +++ b/arch/arm/mach-pxa/irq.c @@ -138,7 +138,7 @@ static int pxa_irq_map(struct irq_domain *h, unsigned int virq, return 0; } -static struct irq_domain_ops pxa_irq_ops = { +static const struct irq_domain_ops pxa_irq_ops = { .map = pxa_irq_map, .xlate = irq_domain_xlate_onecell, };