Commit-ID: 29d5c8db26ad54592436508819ac617119306f96 Gitweb: http://git.kernel.org/tip/29d5c8db26ad54592436508819ac617119306f96 Author: Qais Yousef <[email protected]> AuthorDate: Tue, 8 Dec 2015 13:20:13 +0000 Committer: Thomas Gleixner <[email protected]> CommitDate: Thu, 25 Feb 2016 10:56:55 +0100
genirq: Add DOMAIN_BUS_IPI We need a way to search and match IPI domains. Using the new enum we can use irq_find_matching_host() to do that. Signed-off-by: Qais Yousef <[email protected]> Cc: <[email protected]> Cc: <[email protected]> Cc: <[email protected]> Cc: <[email protected]> Cc: <[email protected]> Cc: <[email protected]> Cc: Qais Yousef <[email protected]> Link: http://lkml.kernel.org/r/[email protected] Signed-off-by: Thomas Gleixner <[email protected]> --- include/linux/irqdomain.h | 1 + 1 file changed, 1 insertion(+) diff --git a/include/linux/irqdomain.h b/include/linux/irqdomain.h index 9bb0a9c..130e1c3 100644 --- a/include/linux/irqdomain.h +++ b/include/linux/irqdomain.h @@ -74,6 +74,7 @@ enum irq_domain_bus_token { DOMAIN_BUS_PCI_MSI, DOMAIN_BUS_PLATFORM_MSI, DOMAIN_BUS_NEXUS, + DOMAIN_BUS_IPI, }; /**

