Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

perf test x86: Fix typo in intel-pt-test

Change function name "is_hydrid" to "is_hybrid".

Signed-off-by: Thomas Falcon <thomas.falcon@intel.com>
Reviewed-by: Adrian Hunter <adrian.hunter@intel.com>
Link: https://lore.kernel.org/r/20241007194758.78659-1-thomas.falcon@intel.com
Signed-off-by: Namhyung Kim <namhyung@kernel.org>

authored by

Thomas Falcon and committed by
Namhyung Kim
9f759d41 3c4e5587

+2 -2
+2 -2
tools/perf/arch/x86/tests/intel-pt-test.c
··· 375 375 return 0; 376 376 } 377 377 378 - static bool is_hydrid(void) 378 + static bool is_hybrid(void) 379 379 { 380 380 unsigned int eax, ebx, ecx, edx = 0; 381 381 bool result; ··· 441 441 int ret = TEST_OK; 442 442 int cpu; 443 443 444 - if (!is_hydrid()) { 444 + if (!is_hybrid()) { 445 445 test->test_cases[subtest].skip_reason = "not hybrid"; 446 446 return TEST_SKIP; 447 447 }