From: Jeremy Linton jlinton@redhat.com
[redhat] arm: turn SPE back on
While attempting to turn SPE on for all redhat distros except for armv7 builds, the enable/disable was inverted and it was left disabled for everything except for armv7. This was incorrect, lets fix it.
Fixes: d76aee99af90 ("[redhat] arm: move SPE to generic") Signed-off-by: Jeremy Linton jlinton@redhat.com
diff --git a/redhat/configs/common/generic/arm/aarch64/CONFIG_ARM_SPE_PMU b/redhat/configs/common/generic/arm/aarch64/CONFIG_ARM_SPE_PMU index blahblah..blahblah 100644 --- a/redhat/configs/common/generic/arm/aarch64/CONFIG_ARM_SPE_PMU +++ b/redhat/configs/common/generic/arm/aarch64/CONFIG_ARM_SPE_PMU @@ -1 +1 @@ -# CONFIG_ARM_SPE_PMU is not set +CONFIG_ARM_SPE_PMU=m diff --git a/redhat/configs/common/generic/arm/armv7/CONFIG_ARM_SPE_PMU b/redhat/configs/common/generic/arm/armv7/CONFIG_ARM_SPE_PMU index blahblah..blahblah 100644 --- a/redhat/configs/common/generic/arm/armv7/CONFIG_ARM_SPE_PMU +++ b/redhat/configs/common/generic/arm/armv7/CONFIG_ARM_SPE_PMU @@ -1 +1 @@ -CONFIG_ARM_SPE_PMU=m +# CONFIG_ARM_SPE_PMU is not set
-- https://gitlab.com/cki-project/kernel-ark/-/merge_requests/1745
kernel@lists.fedoraproject.org