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>
This commit is contained in:
Krzysztof Kozlowski
2015-04-27 21:48:47 +09:00
committed by Michael Ellerman
parent 030bbdbf4c
commit 202648a607
10 changed files with 10 additions and 10 deletions

View File

@@ -397,7 +397,7 @@ static int pci_irq_host_map(struct irq_domain *h, unsigned int virq,
return 0;
}
static struct irq_domain_ops pci_irq_domain_ops = {
static const struct irq_domain_ops pci_irq_domain_ops = {
.map = pci_irq_host_map,
.xlate = pci_irq_host_xlate,
};