xref: /dpdk/lib/eal/include/rte_pci_dev_features.h (revision 719834a6849e1daf4a70ff7742bbcc3ae7e25607)
1*99a2dd95SBruce Richardson /* SPDX-License-Identifier: (BSD-3-Clause OR GPL-2.0)
2*99a2dd95SBruce Richardson  * Copyright(c) 2010-2014 Intel Corporation
3*99a2dd95SBruce Richardson  */
4*99a2dd95SBruce Richardson 
5*99a2dd95SBruce Richardson #ifndef _RTE_PCI_DEV_FEATURES_H
6*99a2dd95SBruce Richardson #define _RTE_PCI_DEV_FEATURES_H
7*99a2dd95SBruce Richardson 
8*99a2dd95SBruce Richardson #include <rte_pci_dev_feature_defs.h>
9*99a2dd95SBruce Richardson 
10*99a2dd95SBruce Richardson #define RTE_INTR_MODE_NONE_NAME "none"
11*99a2dd95SBruce Richardson #define RTE_INTR_MODE_LEGACY_NAME "legacy"
12*99a2dd95SBruce Richardson #define RTE_INTR_MODE_MSI_NAME "msi"
13*99a2dd95SBruce Richardson #define RTE_INTR_MODE_MSIX_NAME "msix"
14*99a2dd95SBruce Richardson 
15*99a2dd95SBruce Richardson #endif
16