1 /* SPDX-License-Identifier: BSD-3-Clause 2 * Copyright(c) 2022 StarFive 3 * Copyright(c) 2022 SiFive 4 * Copyright(c) 2022 Semihalf 5 */ 6 7 #include "rte_hypervisor.h" 8 9 enum rte_hypervisor rte_hypervisor_get(void)10rte_hypervisor_get(void) 11 { 12 return RTE_HYPERVISOR_UNKNOWN; 13 } 14