diff options
author | Linus Torvalds <torvalds@linux-foundation.org> | 2017-03-12 14:11:38 -0700 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2017-03-12 14:11:38 -0700 |
commit | ecade114250555720aa8a6232b09a2ce2e47ea99 (patch) | |
tree | 806a09d37497817b048504213ec8a0bf9901e5a7 /include | |
parent | 106e4da60209b508894956b6adf4688f84c1766d (diff) | |
parent | 920c634aff6cb66e7f352668521eb1313897e93c (diff) | |
download | linux-stable-ecade114250555720aa8a6232b09a2ce2e47ea99.tar.gz linux-stable-ecade114250555720aa8a6232b09a2ce2e47ea99.tar.bz2 linux-stable-ecade114250555720aa8a6232b09a2ce2e47ea99.zip |
Merge branch 'irq-urgent-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip
Pull irq fixes from Thomas Gleixner:
- a workaround for a GIC erratum
- a missing stub function for CONFIG_IRQDOMAIN=n
- fixes for a couple of type inconsistencies
* 'irq-urgent-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip:
irqchip/crossbar: Fix incorrect type of register size
irqchip/gicv3-its: Add workaround for QDF2400 ITS erratum 0065
irqdomain: Add empty irq_domain_check_msi_remap
irqchip/crossbar: Fix incorrect type of local variables
Diffstat (limited to 'include')
-rw-r--r-- | include/linux/irqdomain.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/include/linux/irqdomain.h b/include/linux/irqdomain.h index 188eced6813e..9f3616085423 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 false; +} #endif /* !CONFIG_IRQ_DOMAIN */ #endif /* _LINUX_IRQDOMAIN_H */ |