projects
/
firefly-linux-kernel-4.4.55.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
a1c0a6a
)
ARM: pxa: Constify irq_domain_ops
author
Krzysztof Kozlowski
<k.kozlowski.k@gmail.com>
Mon, 27 Apr 2015 12:50:46 +0000
(21:50 +0900)
committer
Robert Jarzmik
<robert.jarzmik@free.fr>
Tue, 12 May 2015 21:26:46 +0000
(23:26 +0200)
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: Robert Jarzmik <robert.jarzmik@free.fr>
arch/arm/mach-pxa/irq.c
patch
|
blob
|
history
diff --git
a/arch/arm/mach-pxa/irq.c
b/arch/arm/mach-pxa/irq.c
index 89a7c06570d3adf248a00bf07c3c3aff631d23cf..98608c5575cb7cdc31d83386334db2ff7b523a25 100644
(file)
--- a/
arch/arm/mach-pxa/irq.c
+++ b/
arch/arm/mach-pxa/irq.c
@@
-138,7
+138,7
@@
static int pxa_irq_map(struct irq_domain *h, unsigned int virq,
return 0;
}
-static struct irq_domain_ops pxa_irq_ops = {
+static
const
struct irq_domain_ops pxa_irq_ops = {
.map = pxa_irq_map,
.xlate = irq_domain_xlate_onecell,
};