summaryrefslogtreecommitdiffstats
path: root/vppinfra/vppinfra/cpu.h
diff options
context:
space:
mode:
Diffstat (limited to 'vppinfra/vppinfra/cpu.h')
-rw-r--r--vppinfra/vppinfra/cpu.h19
1 files changed, 13 insertions, 6 deletions
diff --git a/vppinfra/vppinfra/cpu.h b/vppinfra/vppinfra/cpu.h
index 961af709a63..a88eaa2d9ba 100644
--- a/vppinfra/vppinfra/cpu.h
+++ b/vppinfra/vppinfra/cpu.h
@@ -66,14 +66,14 @@ _ (aes, 1, ecx, 25) \
_ (sha, 7, ebx, 29)
static inline int
-clib_get_cpuid(const u32 lev, u32 * eax, u32 *ebx, u32 * ecx, u32 * edx)
+clib_get_cpuid (const u32 lev, u32 * eax, u32 * ebx, u32 * ecx, u32 * edx)
{
if ((u32) __get_cpuid_max (0x80000000 & lev, 0) < lev)
return 0;
if (lev == 7)
- __cpuid_count(lev, 0, *eax, *ebx, *ecx, *edx);
+ __cpuid_count (lev, 0, *eax, *ebx, *ecx, *edx);
else
- __cpuid(lev, *eax, *ebx, *ecx, *edx);
+ __cpuid (lev, *eax, *ebx, *ecx, *edx);
return 1;
}
@@ -87,12 +87,19 @@ clib_cpu_supports_ ## flag() \
\
return ((reg & (1 << bit)) != 0); \
}
- foreach_x86_64_flags
+foreach_x86_64_flags
#undef _
#endif
-
-format_function_t format_cpu_uarch;
+ format_function_t format_cpu_uarch;
format_function_t format_cpu_model_name;
format_function_t format_cpu_flags;
#endif
+
+/*
+ * fd.io coding-style-patch-verification: ON
+ *
+ * Local Variables:
+ * eval: (c-set-style "gnu")
+ * End:
+ */