1
0
mirror of https://github.com/google/cpu_features.git synced 2025-07-02 05:33:17 +02:00

Fix typos discovered by codespell

This commit is contained in:
Christian Clauss
2025-02-09 22:45:43 +01:00
parent 0189e5bb92
commit dcddc4a2cb
8 changed files with 10 additions and 10 deletions

View File

@ -99,7 +99,7 @@ typedef enum {
PPC_HAS_MMU, /* Memory management unit */
PPC_HAS_4xxMAC,
PPC_UNIFIED_CACHE, /* Unified instruction and data cache */
PPC_HAS_SPE, /* Signal processing extention unit */
PPC_HAS_SPE, /* Signal processing extension unit */
PPC_HAS_EFP_SINGLE, /* SPE single precision fpu */
PPC_HAS_EFP_DOUBLE, /* SPE double precision fpu */
PPC_NO_TB, /* No timebase */
@ -116,7 +116,7 @@ typedef enum {
PPC_POWER6_EXT,
PPC_ARCH_2_06, /* ISA 2.06 - POWER7 */
PPC_HAS_VSX, /* Vector-scalar extension */
PPC_PSERIES_PERFMON_COMPAT, /* Set of backwards compatibile performance
PPC_PSERIES_PERFMON_COMPAT, /* Set of backwards compatible performance
monitoring events */
PPC_TRUE_LE,
PPC_PPC_LE,

View File

@ -126,7 +126,7 @@ typedef struct {
// Calls cpuid and returns an initialized X86info.
X86Info GetX86Info(void);
// Returns cache hierarchy informations.
// Returns cache hierarchy information.
// Can call cpuid multiple times.
CacheInfo GetX86CacheInfo(void);