numam-dpdk/lib/librte_eal/arm/rte_hypervisor.c
Thomas Monjalon 2a1991799e eal: move arch-specific C files
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>
2020-03-31 13:08:55 +02:00

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;
}