iommu/amd: 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> Signed-off-by: Joerg Roedel <jroedel@suse.de>
This commit is contained in:
parent
30bf2df65b
commit
e2f9d45fb4
|
@ -4299,7 +4299,7 @@ static void irq_remapping_deactivate(struct irq_domain *domain,
|
|||
irte_info->index);
|
||||
}
|
||||
|
||||
static struct irq_domain_ops amd_ir_domain_ops = {
|
||||
static const struct irq_domain_ops amd_ir_domain_ops = {
|
||||
.alloc = irq_remapping_alloc,
|
||||
.free = irq_remapping_free,
|
||||
.activate = irq_remapping_activate,
|
||||
|
|
Loading…
Reference in New Issue