Commit 598c1a2d authored by Rob Herring (Arm)'s avatar Rob Herring (Arm) Committed by Will Deacon

perf: arm_pmuv3: Drop unnecessary IS_ENABLED(CONFIG_ARM64) check

The IS_ENABLED(CONFIG_ARM64) check for threshold support is unnecessary.
The purpose is to not enable thresholds on arm32, but if threshold is
non-zero, the check against threshold_max() just above here will have
errored out because threshold_max() is always 0 on arm32.
Signed-off-by: default avatarRob Herring (Arm) <robh@kernel.org>
Acked-by: default avatarMark rutland <mark.rutland@arm.com>
Link: https://lore.kernel.org/r/20240626-arm-pmu-3-9-icntr-v2-2-c9784b4f4065@kernel.orgSigned-off-by: default avatarWill Deacon <will@kernel.org>
parent 81e15ca3
...@@ -1045,7 +1045,7 @@ static int armv8pmu_set_event_filter(struct hw_perf_event *event, ...@@ -1045,7 +1045,7 @@ static int armv8pmu_set_event_filter(struct hw_perf_event *event,
return -EINVAL; return -EINVAL;
} }
if (IS_ENABLED(CONFIG_ARM64) && th) { if (th) {
config_base |= FIELD_PREP(ARMV8_PMU_EVTYPE_TH, th); config_base |= FIELD_PREP(ARMV8_PMU_EVTYPE_TH, th);
config_base |= FIELD_PREP(ARMV8_PMU_EVTYPE_TC, config_base |= FIELD_PREP(ARMV8_PMU_EVTYPE_TC,
armv8pmu_event_threshold_control(attr)); armv8pmu_event_threshold_control(attr));
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment