diff options
author | Tobias Klauser <tklauser@distanz.ch> | 2017-04-03 05:08:52 +0200 |
---|---|---|
committer | Ley Foon Tan <ley.foon.tan@intel.com> | 2017-05-08 10:59:19 +0200 |
commit | 57ac76ed6c0daf02c520e09e0af421f02ee2de8b (patch) | |
tree | 8b7b3a45696c2f1632cadc72755d14f2dcd92836 /arch/nios2/kernel | |
parent | nios2: remove wrapper header for cmpxchg.h (diff) | |
download | linux-57ac76ed6c0daf02c520e09e0af421f02ee2de8b.tar.xz linux-57ac76ed6c0daf02c520e09e0af421f02ee2de8b.zip |
nios2: constify irq_domain_ops
struct irq_domain_ops is not modified, so it can be made const.
Signed-off-by: Tobias Klauser <tklauser@distanz.ch>
Acked-by: Ley Foon Tan <ley.foon.tan@intel.com>
Diffstat (limited to 'arch/nios2/kernel')
-rw-r--r-- | arch/nios2/kernel/irq.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/nios2/kernel/irq.c b/arch/nios2/kernel/irq.c index f5b74ae69b5b..6c833a9d4eab 100644 --- a/arch/nios2/kernel/irq.c +++ b/arch/nios2/kernel/irq.c @@ -67,7 +67,7 @@ static int irq_map(struct irq_domain *h, unsigned int virq, return 0; } -static struct irq_domain_ops irq_ops = { +static const struct irq_domain_ops irq_ops = { .map = irq_map, .xlate = irq_domain_xlate_onecell, }; |