OSDN Git Service

irq_domain/c6x: constify irq_domain structures
authorGrant Likely <grant.likely@secretlab.ca>
Thu, 26 Jan 2012 19:25:18 +0000 (12:25 -0700)
committerGrant Likely <grant.likely@secretlab.ca>
Thu, 16 Feb 2012 13:11:24 +0000 (06:11 -0700)
Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
Cc: Mark Salter <msalter@redhat.com>
Cc: Thomas Gleixner <tglx@linutronix.de>
arch/arm/common/gic.c
arch/c6x/kernel/irq.c
arch/c6x/platforms/megamod-pic.c

index 7275d80..f0783be 100644 (file)
@@ -635,7 +635,7 @@ static int gic_irq_domain_xlate(struct irq_domain *d,
        return 0;
 }
 
-struct irq_domain_ops gic_irq_domain_ops = {
+const struct irq_domain_ops gic_irq_domain_ops = {
        .map = gic_irq_domain_map,
        .xlate = gic_irq_domain_xlate,
 };
index 3d5ac60..c6b36e8 100644 (file)
@@ -86,7 +86,7 @@ static int core_domain_map(struct irq_domain *h, unsigned int virq,
        return 0;
 }
 
-static struct irq_domain_ops core_domain_ops = {
+static const struct irq_domain_ops core_domain_ops = {
        .map = core_domain_map,
 };
 
index 61f5863..9f35fbf 100644 (file)
@@ -148,7 +148,7 @@ static int megamod_xlate(struct irq_domain *h, struct device_node *ct,
        return 0;
 }
 
-static struct irq_domain_ops megamod_domain_ops = {
+static const struct irq_domain_ops megamod_domain_ops = {
        .map    = megamod_map,
        .xlate  = megamod_xlate,
 };