9c1e0dc39a
The EAL API (with doxygen documentation) is moved from common/include/ to include/, which makes more clear that it is the global API for all environments and architectures. Note that the arch-specific and OS-specific include files are not in this global include directory, but include/generic/ should cover the doxygen documentation for them. Signed-off-by: Thomas Monjalon <thomas@monjalon.net> Acked-by: David Marchand <david.marchand@redhat.com>
16 lines
373 B
C
16 lines
373 B
C
/* SPDX-License-Identifier: (BSD-3-Clause OR GPL-2.0)
|
|
* Copyright(c) 2010-2014 Intel Corporation
|
|
*/
|
|
|
|
#ifndef _RTE_PCI_DEV_FEATURES_H
|
|
#define _RTE_PCI_DEV_FEATURES_H
|
|
|
|
#include <rte_pci_dev_feature_defs.h>
|
|
|
|
#define RTE_INTR_MODE_NONE_NAME "none"
|
|
#define RTE_INTR_MODE_LEGACY_NAME "legacy"
|
|
#define RTE_INTR_MODE_MSI_NAME "msi"
|
|
#define RTE_INTR_MODE_MSIX_NAME "msix"
|
|
|
|
#endif
|