numam-dpdk/lib/librte_eal/ppc/rte_cycles.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
159 B
C

/* SPDX-License-Identifier: BSD-3-Clause
* Copyright (C) IBM Corporation 2019.
*/
#include "eal_private.h"
uint64_t
get_tsc_freq_arch(void)
{
return 0;
}