diff options
author | Krzysztof Kozlowski <k.kozlowski.k@gmail.com> | 2015-04-27 13:48:59 +0300 |
---|---|---|
committer | Kukjin Kim <kgene@kernel.org> | 2015-06-05 20:17:57 +0300 |
commit | fc4a2cc7c3ccb6e02337d9d83365032a131c9da1 (patch) | |
tree | 0b29342350d707d989ed333781dcc11c9f535419 /arch | |
parent | af9971144dde808338919cb4f3849ea2ac60739f (diff) | |
download | linux-fc4a2cc7c3ccb6e02337d9d83365032a131c9da1.tar.xz |
ARM: EXYNOS: 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: Kukjin Kim <kgene@kernel.org>
Diffstat (limited to 'arch')
-rw-r--r-- | arch/arm/mach-exynos/suspend.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/arm/mach-exynos/suspend.c b/arch/arm/mach-exynos/suspend.c index c0b6dccbf7bd..f7f6c13df65d 100644 --- a/arch/arm/mach-exynos/suspend.c +++ b/arch/arm/mach-exynos/suspend.c @@ -223,7 +223,7 @@ static int exynos_pmu_domain_alloc(struct irq_domain *domain, return irq_domain_alloc_irqs_parent(domain, virq, nr_irqs, &parent_args); } -static struct irq_domain_ops exynos_pmu_domain_ops = { +static const struct irq_domain_ops exynos_pmu_domain_ops = { .xlate = exynos_pmu_domain_xlate, .alloc = exynos_pmu_domain_alloc, .free = irq_domain_free_irqs_common, |