doc: add Meson coding style to contributors guide
[dpdk.git] / lib / librte_eal / ppc / rte_cycles.c
1 /* SPDX-License-Identifier: BSD-3-Clause
2  * Copyright (C) IBM Corporation 2019.
3  */
4
5 #include <sys/platform/ppc.h>
6
7 #include "eal_private.h"
8
9 uint64_t
10 get_tsc_freq_arch(void)
11 {
12         return __ppc_get_timebase_freq();
13 }