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
159 B
C
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;
|
|
}
|