Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S932988AbbD0MxH (ORCPT ); Mon, 27 Apr 2015 08:53:07 -0400 Received: from mail-pd0-f174.google.com ([209.85.192.174]:34914 "EHLO mail-pd0-f174.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S932772AbbD0MxE (ORCPT ); Mon, 27 Apr 2015 08:53:04 -0400 From: Krzysztof Kozlowski To: Mark Brown , Greg Kroah-Hartman , linux-kernel@vger.kernel.org Cc: Krzysztof Kozlowski Subject: [PATCH] regmap: Constify irq_domain_ops Date: Mon, 27 Apr 2015 21:52:10 +0900 Message-Id: <1430139130-3762-1-git-send-email-k.kozlowski.k@gmail.com> X-Mailer: git-send-email 2.1.0 Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 1001 Lines: 29 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 --- drivers/base/regmap/regmap-irq.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/base/regmap/regmap-irq.c b/drivers/base/regmap/regmap-irq.c index a6c3f75b4b01..e7273bb890be 100644 --- a/drivers/base/regmap/regmap-irq.c +++ b/drivers/base/regmap/regmap-irq.c @@ -318,7 +318,7 @@ static int regmap_irq_map(struct irq_domain *h, unsigned int virq, return 0; } -static struct irq_domain_ops regmap_domain_ops = { +static const struct irq_domain_ops regmap_domain_ops = { .map = regmap_irq_map, .xlate = irq_domain_xlate_twocell, }; -- 2.1.0 -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/