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>
17 lines
330 B
C
17 lines
330 B
C
/* SPDX-License-Identifier: (BSD-3-Clause OR GPL-2.0)
|
|
* Copyright(c) 2010-2014 Intel Corporation
|
|
*/
|
|
|
|
#ifndef _RTE_PCI_DEV_DEFS_H_
|
|
#define _RTE_PCI_DEV_DEFS_H_
|
|
|
|
/* interrupt mode */
|
|
enum rte_intr_mode {
|
|
RTE_INTR_MODE_NONE = 0,
|
|
RTE_INTR_MODE_LEGACY,
|
|
RTE_INTR_MODE_MSI,
|
|
RTE_INTR_MODE_MSIX
|
|
};
|
|
|
|
#endif /* _RTE_PCI_DEV_DEFS_H_ */
|