diff options
| author | Kishon Vijay Abraham I <kishon@ti.com> | 2020-03-17 15:31:55 +0530 | 
|---|---|---|
| committer | Lorenzo Pieralisi <lorenzo.pieralisi@arm.com> | 2020-04-02 17:57:10 +0100 | 
| commit | 475007f9cef0ef88ea9263529ad93a16849c49e8 (patch) | |
| tree | d6474125b23781786c15a715c41b68193da535c8 /include/uapi | |
| parent | b2ba9225e0313b1de631a44b7b48c109032bffec (diff) | |
| download | linux-475007f9cef0ef88ea9263529ad93a16849c49e8.tar.bz2 | |
misc: pci_endpoint_test: Add ioctl to clear IRQ
Add ioctl to clear IRQ which can be used to free the allocated
IRQ vectors and free the requested IRQ.
Signed-off-by: Kishon Vijay Abraham I <kishon@ti.com>
Signed-off-by: Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
Diffstat (limited to 'include/uapi')
| -rw-r--r-- | include/uapi/linux/pcitest.h | 1 | 
1 files changed, 1 insertions, 0 deletions
| diff --git a/include/uapi/linux/pcitest.h b/include/uapi/linux/pcitest.h index 8b868761f8b4..c3ab4c826297 100644 --- a/include/uapi/linux/pcitest.h +++ b/include/uapi/linux/pcitest.h @@ -19,6 +19,7 @@  #define PCITEST_MSIX		_IOW('P', 0x7, int)  #define PCITEST_SET_IRQTYPE	_IOW('P', 0x8, int)  #define PCITEST_GET_IRQTYPE	_IO('P', 0x9) +#define PCITEST_CLEAR_IRQ	_IO('P', 0x10)  #define PCITEST_FLAGS_USE_DMA	0x00000001 |