Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > linux.kernel > #1590970
| From | Mian Yousaf Kaukab <yousaf.kaukab@suse.com> |
|---|---|
| Newsgroups | linux.kernel |
| Subject | [PATCH 1/2] irqdomain: add empty irq_domain_check_msi_remap |
| Date | 2017-03-02 11:40 +0100 |
| Message-ID | <tgw02-OJ-9@gated-at.bofh.it> (permalink) |
| Organization | linux.* mail to news gateway |
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'
Signed-off-by: Mian Yousaf Kaukab <yousaf.kaukab@suse.com>
---
include/linux/irqdomain.h | 4 ++++
1 file changed, 4 insertions(+)
diff --git a/include/linux/irqdomain.h b/include/linux/irqdomain.h
index 188eced6813e..137817b08cdc 100644
--- a/include/linux/irqdomain.h
+++ b/include/linux/irqdomain.h
@@ -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 true;
+}
#endif /* !CONFIG_IRQ_DOMAIN */
#endif /* _LINUX_IRQDOMAIN_H */
--
2.11.0
Back to linux.kernel | Previous | Next — Next in thread | Find similar | Unroll thread
[PATCH 1/2] irqdomain: add empty irq_domain_check_msi_remap Mian Yousaf Kaukab <yousaf.kaukab@suse.com> - 2017-03-02 11:40 +0100 [PATCH 2/2] vfio: type1: conditionally check MSI remapping at irq domain level Mian Yousaf Kaukab <yousaf.kaukab@suse.com> - 2017-03-02 11:40 +0100
csiph-web