summaryrefslogtreecommitdiffstats
path: root/arch/powerpc/sysdev/uic.c
diff options
context:
space:
mode:
authorKrzysztof Kozlowski2015-04-27 14:48:47 +0200
committerMichael Ellerman2015-05-11 08:58:20 +0200
commit202648a6070b69d60c6d0926ff06c8863e231468 (patch)
treec89df956f7e5f875d605b47e15df3dc0b30d9767 /arch/powerpc/sysdev/uic.c
parentLinux 4.1-rc3 (diff)
downloadkernel-qcow2-linux-202648a6070b69d60c6d0926ff06c8863e231468.tar.gz
kernel-qcow2-linux-202648a6070b69d60c6d0926ff06c8863e231468.tar.xz
kernel-qcow2-linux-202648a6070b69d60c6d0926ff06c8863e231468.zip
powerpc: Constify irq_domain_ops
The irq_domain_ops are not modified by the driver and the irqdomain core code accepts pointer to a const data. Signed-off-by: Krzysztof Kozlowski <k.kozlowski.k@gmail.com> Signed-off-by: Michael Ellerman <mpe@ellerman.id.au>
Diffstat (limited to 'arch/powerpc/sysdev/uic.c')
-rw-r--r--arch/powerpc/sysdev/uic.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/powerpc/sysdev/uic.c b/arch/powerpc/sysdev/uic.c
index 7c37157d4c24..1cd057f11725 100644
--- a/arch/powerpc/sysdev/uic.c
+++ b/arch/powerpc/sysdev/uic.c
@@ -189,7 +189,7 @@ static int uic_host_map(struct irq_domain *h, unsigned int virq,
return 0;
}
-static struct irq_domain_ops uic_host_ops = {
+static const struct irq_domain_ops uic_host_ops = {
.map = uic_host_map,
.xlate = irq_domain_xlate_twocell,
};