xref: /f-stack/dpdk/lib/librte_eal/x86/rte_cpuid.h (revision 2d9fd380)
1 /* SPDX-License-Identifier: BSD-3-Clause
2  * Copyright(c) 2010-2015 Intel Corporation
3  */
4 
5 #ifndef RTE_CPUID_H
6 #define RTE_CPUID_H
7 
8 #include <cpuid.h>
9 
10 enum cpu_register_t {
11 	RTE_REG_EAX = 0,
12 	RTE_REG_EBX,
13 	RTE_REG_ECX,
14 	RTE_REG_EDX,
15 };
16 
17 typedef uint32_t cpuid_registers_t[4];
18 
19 #endif /* RTE_CPUID_H */
20