aboutsummaryrefslogtreecommitdiffstats
path: root/arch
diff options
context:
space:
mode:
authorGrant Likely <grant.likely@secretlab.ca>2012-01-26 14:25:18 -0500
committerGrant Likely <grant.likely@secretlab.ca>2012-02-16 08:11:24 -0500
commit15a25980d450c81e514c2a8724b575461961a30d (patch)
tree03371d7008b6601ad9aa2578131c74621f617d90 /arch
parent0bd761e1b6d909d3fd08841be7d5035f9fde8a53 (diff)
irq_domain/c6x: constify irq_domain structures
Signed-off-by: Grant Likely <grant.likely@secretlab.ca> Cc: Mark Salter <msalter@redhat.com> Cc: Thomas Gleixner <tglx@linutronix.de>
Diffstat (limited to 'arch')
-rw-r--r--arch/arm/common/gic.c2
-rw-r--r--arch/c6x/kernel/irq.c2
-rw-r--r--arch/c6x/platforms/megamod-pic.c2
3 files changed, 3 insertions, 3 deletions
diff --git a/arch/arm/common/gic.c b/arch/arm/common/gic.c
index 7275d808f76d..f0783be17352 100644
--- a/arch/arm/common/gic.c
+++ b/arch/arm/common/gic.c
@@ -635,7 +635,7 @@ static int gic_irq_domain_xlate(struct irq_domain *d,
635 return 0; 635 return 0;
636} 636}
637 637
638struct irq_domain_ops gic_irq_domain_ops = { 638const struct irq_domain_ops gic_irq_domain_ops = {
639 .map = gic_irq_domain_map, 639 .map = gic_irq_domain_map,
640 .xlate = gic_irq_domain_xlate, 640 .xlate = gic_irq_domain_xlate,
641}; 641};
diff --git a/arch/c6x/kernel/irq.c b/arch/c6x/kernel/irq.c
index 3d5ac600a38b..c6b36e86a010 100644
--- a/arch/c6x/kernel/irq.c
+++ b/arch/c6x/kernel/irq.c
@@ -86,7 +86,7 @@ static int core_domain_map(struct irq_domain *h, unsigned int virq,
86 return 0; 86 return 0;
87} 87}
88 88
89static struct irq_domain_ops core_domain_ops = { 89static const struct irq_domain_ops core_domain_ops = {
90 .map = core_domain_map, 90 .map = core_domain_map,
91}; 91};
92 92
diff --git a/arch/c6x/platforms/megamod-pic.c b/arch/c6x/platforms/megamod-pic.c
index 61f5863f1b1d..9f35fbf2df3e 100644
--- a/arch/c6x/platforms/megamod-pic.c
+++ b/arch/c6x/platforms/megamod-pic.c
@@ -148,7 +148,7 @@ static int megamod_xlate(struct irq_domain *h, struct device_node *ct,
148 return 0; 148 return 0;
149} 149}
150 150
151static struct irq_domain_ops megamod_domain_ops = { 151static const struct irq_domain_ops megamod_domain_ops = {
152 .map = megamod_map, 152 .map = megamod_map,
153 .xlate = megamod_xlate, 153 .xlate = megamod_xlate,
154}; 154};