diff options
author | Grant Likely <grant.likely@secretlab.ca> | 2012-01-26 19:40:09 +0400 |
---|---|---|
committer | Grant Likely <grant.likely@secretlab.ca> | 2012-02-16 17:11:24 +0400 |
commit | c1e572e6506082ed120a13454b2cc2f525ee7aa6 (patch) | |
tree | c7026b4522a74d9bb1594547608eab86fcb15c4c /arch/c6x/kernel | |
parent | 15a25980d450c81e514c2a8724b575461961a30d (diff) | |
download | linux-c1e572e6506082ed120a13454b2cc2f525ee7aa6.tar.xz |
irq_domain/c6x: Use library of xlate functions
The c6x irq controllers don't need to define custom .xlate hooks
Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
Cc: Rob Herring <rob.herring@calxeda.com>
Cc: Mark Salter <msalter@redhat.com>
Cc: Thomas Gleixner <tglx@linutronix.de>
Diffstat (limited to 'arch/c6x/kernel')
-rw-r--r-- | arch/c6x/kernel/irq.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/arch/c6x/kernel/irq.c b/arch/c6x/kernel/irq.c index c6b36e86a010..d77bcfdf0d8e 100644 --- a/arch/c6x/kernel/irq.c +++ b/arch/c6x/kernel/irq.c @@ -88,6 +88,7 @@ static int core_domain_map(struct irq_domain *h, unsigned int virq, static const struct irq_domain_ops core_domain_ops = { .map = core_domain_map, + .xlate = irq_domain_xlate_onecell, }; void __init init_IRQ(void) |