Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit b3e22847 authored by Mian Yousaf Kaukab's avatar Mian Yousaf Kaukab Committed by Marc Zyngier
Browse files

irqdomain: Add empty irq_domain_check_msi_remap



Fix following build error for s390:
drivers/vfio/vfio_iommu_type1.c: In function 'vfio_iommu_type1_attach_group':
drivers/vfio/vfio_iommu_type1.c:1290:25: error: implicit declaration of function 'irq_domain_check_msi_remap'

Acked-by: default avatarMarc Zyngier <marc.zyngier@arm.com>
Reviewed-by: default avatarEric Auger <eric.auger@redhat.com>
Signed-off-by: default avatarMian Yousaf Kaukab <yousaf.kaukab@suse.com>
Signed-off-by: default avatarMarc Zyngier <marc.zyngier@arm.com>
parent 077dbaee
Loading
Loading
Loading
Loading
+4 −0
Original line number Diff line number Diff line
@@ -524,6 +524,10 @@ static inline struct irq_domain *irq_find_matching_fwnode(
{
	return NULL;
}
static inline bool irq_domain_check_msi_remap(void)
{
	return false;
}
#endif /* !CONFIG_IRQ_DOMAIN */

#endif /* _LINUX_IRQDOMAIN_H */