diff options
| author | Jiang Liu <[email protected]> | 2015-07-09 16:00:47 +0800 |
|---|---|---|
| committer | Thomas Gleixner <[email protected]> | 2015-07-22 18:37:44 +0200 |
| commit | aa48b6f708868ab9c22ca737f27a0da832bf7f08 (patch) | |
| tree | eaf8534e5415800e0a907ef7810ff7f7a37f335b /include/linux | |
| parent | fc88419cfac50b05c7c1ea218b08e70c31d1b71f (diff) | |
genirq/MSI: Move alloc_msi_entry() from PCI into generic MSI code
Move alloc_msi_entry() from PCI MSI code into generic MSI code, so it
can be reused by other generic MSI drivers. Also introduce
free_msi_entry() for completeness.
Suggested-by: Stuart Yoder <[email protected]>.
Signed-off-by: Jiang Liu <[email protected]>
Reviewed-by: Marc Zyngier <[email protected]>
Reviewed-by: Yijing Wang <[email protected]>
Acked-by: Bjorn Helgaas <[email protected]>
Cc: Tony Luck <[email protected]>
Cc: [email protected]
Cc: Grant Likely <[email protected]>
Cc: Borislav Petkov <[email protected]>
Cc: Alexander Gordeev <[email protected]>
Link: http://lkml.kernel.org/r/[email protected]
Signed-off-by: Thomas Gleixner <[email protected]>
Diffstat (limited to 'include/linux')
| -rw-r--r-- | include/linux/msi.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/include/linux/msi.h b/include/linux/msi.h index 518e8c4a4064..f83c87e447bc 100644 --- a/include/linux/msi.h +++ b/include/linux/msi.h @@ -96,6 +96,8 @@ static inline void *msi_desc_to_pci_sysdata(struct msi_desc *desc) } #endif /* CONFIG_PCI_MSI */ +struct msi_desc *alloc_msi_entry(struct device *dev); +void free_msi_entry(struct msi_desc *entry); void __pci_read_msi_msg(struct msi_desc *entry, struct msi_msg *msg); void __pci_write_msi_msg(struct msi_desc *entry, struct msi_msg *msg); void pci_write_msi_msg(unsigned int irq, struct msi_msg *msg); |