diff options
author | Grant Likely <grant.likely@secretlab.ca> | 2012-01-26 12:25:18 -0700 |
---|---|---|
committer | Grant Likely <grant.likely@secretlab.ca> | 2012-02-16 06:11:24 -0700 |
commit | 15a25980d450c81e514c2a8724b575461961a30d (patch) | |
tree | 03371d7008b6601ad9aa2578131c74621f617d90 /arch/c6x/platforms | |
parent | 0bd761e1b6d909d3fd08841be7d5035f9fde8a53 (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/c6x/platforms')
-rw-r--r-- | arch/c6x/platforms/megamod-pic.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/c6x/platforms/megamod-pic.c b/arch/c6x/platforms/megamod-pic.c index 61f5863f1b1..9f35fbf2df3 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, 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, }; |