2a1991799e
The arch-specific directories arm, ppc and x86 in common/arch/ are moved at the same level as the OS-specific directories. It makes more clear that EAL is covering a matrix combining OS and arch. Signed-off-by: Thomas Monjalon <thomas@monjalon.net> Reviewed-by: David Christensen <drc@linux.vnet.ibm.com> Acked-by: David Marchand <david.marchand@redhat.com>
12 lines
201 B
C
12 lines
201 B
C
/* SPDX-License-Identifier: BSD-3-Clause
|
|
* Copyright 2017 Mellanox Technologies, Ltd
|
|
*/
|
|
|
|
#include "rte_hypervisor.h"
|
|
|
|
enum rte_hypervisor
|
|
rte_hypervisor_get(void)
|
|
{
|
|
return RTE_HYPERVISOR_UNKNOWN;
|
|
}
|