mirror of
https://github.com/lkl/linux.git
synced 2025-12-19 16:13:19 +09:00
genirq/msi: Create msi_api.h
Create a API header for MSI specific functions which are relevant to device drivers. Signed-off-by: Thomas Gleixner <tglx@linutronix.de> Reviewed-by: Jason Gunthorpe <jgg@nvidia.com> Reviewed-by: Kevin Tian <kevin.tian@intel.com> Acked-by: Marc Zyngier <maz@kernel.org> Link: https://lore.kernel.org/r/20221124230313.632679220@linutronix.de
This commit is contained in:
15
include/linux/msi_api.h
Normal file
15
include/linux/msi_api.h
Normal file
@@ -0,0 +1,15 @@
|
||||
/* SPDX-License-Identifier: GPL-2.0 */
|
||||
#ifndef LINUX_MSI_API_H
|
||||
#define LINUX_MSI_API_H
|
||||
|
||||
/*
|
||||
* APIs which are relevant for device driver code for allocating and
|
||||
* freeing MSI interrupts and querying the associations between
|
||||
* hardware/software MSI indices and the Linux interrupt number.
|
||||
*/
|
||||
|
||||
struct device;
|
||||
|
||||
unsigned int msi_get_virq(struct device *dev, unsigned int index);
|
||||
|
||||
#endif
|
||||
Reference in New Issue
Block a user