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