mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2026-05-09 05:31:17 -04:00
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>
This commit is contained in:
committed by
Namhyung Kim
parent
3c4e558787
commit
9f759d41b3
@@ -375,7 +375,7 @@ static int get_pt_caps(int cpu, struct pt_caps *caps)
|
||||
return 0;
|
||||
}
|
||||
|
||||
static bool is_hydrid(void)
|
||||
static bool is_hybrid(void)
|
||||
{
|
||||
unsigned int eax, ebx, ecx, edx = 0;
|
||||
bool result;
|
||||
@@ -441,7 +441,7 @@ int test__intel_pt_hybrid_compat(struct test_suite *test, int subtest)
|
||||
int ret = TEST_OK;
|
||||
int cpu;
|
||||
|
||||
if (!is_hydrid()) {
|
||||
if (!is_hybrid()) {
|
||||
test->test_cases[subtest].skip_reason = "not hybrid";
|
||||
return TEST_SKIP;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user