From: Krzysztof Kozlowski Date: Mon, 27 Apr 2015 12:52:10 +0000 (+0900) Subject: regmap: Constify irq_domain_ops X-Git-Url: http://drtracing.org/?a=commitdiff_plain;h=77f5f3e9c86dc4604366a567819cc3ec4bdb4400;p=deliverable%2Flinux.git regmap: Constify irq_domain_ops 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 Signed-off-by: Mark Brown --- 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, };