aboutsummaryrefslogtreecommitdiff
path: root/drivers/mfd/max8998-irq.c
diff options
context:
space:
mode:
authorGravatar Krzysztof Kozlowski <k.kozlowski.k@gmail.com> 2015-04-27 21:54:13 +0900
committerGravatar Lee Jones <lee.jones@linaro.org> 2015-06-22 12:25:01 +0100
commit7ce7b26f84cfcbcb04f526f56f685a56ccddf355 (patch)
tree33c78fde9eee73e24ec91e1f98051eb9909d5b91 /drivers/mfd/max8998-irq.c
parentMerge branches 'ib-mfd-watchdog-rtc-4.2', 'ib-mfd-regulator-4.2' and 'ib-mfd-... (diff)
downloadlinux-7ce7b26f84cfcbcb04f526f56f685a56ccddf355.tar.gz
linux-7ce7b26f84cfcbcb04f526f56f685a56ccddf355.tar.bz2
linux-7ce7b26f84cfcbcb04f526f56f685a56ccddf355.zip
mfd: Constify regmap and irq configuration data
Constify in various drivers configuration data which is not modified: - regmap_irq_chip, - individual regmap_irq's in array, - regmap_config, - irq_domain_ops, Signed-off-by: Krzysztof Kozlowski <k.kozlowski.k@gmail.com> Signed-off-by: Lee Jones <lee.jones@linaro.org>
Diffstat (limited to 'drivers/mfd/max8998-irq.c')
-rw-r--r--drivers/mfd/max8998-irq.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/mfd/max8998-irq.c b/drivers/mfd/max8998-irq.c
index c469477eb778..3702056628a8 100644
--- a/drivers/mfd/max8998-irq.c
+++ b/drivers/mfd/max8998-irq.c
@@ -214,7 +214,7 @@ static int max8998_irq_domain_map(struct irq_domain *d, unsigned int irq,
return 0;
}
-static struct irq_domain_ops max8998_irq_domain_ops = {
+static const struct irq_domain_ops max8998_irq_domain_ops = {
.map = max8998_irq_domain_map,
};