aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorShengYi Hung <aokblast@FreeBSD.org>2026-07-19 14:00:27 +0000
committerShengYi Hung <aokblast@FreeBSD.org>2026-07-19 14:03:48 +0000
commit02c440e204041e92da403a64b70c2e1fdf3a4f73 (patch)
tree083ba77cd5b68176fef2e473e51fab5baa1f1b9f
parentbdc0f7678257eaa739b9c816285504470e71e3de (diff)
-rw-r--r--sys/x86/cpufreq/hwpstate_intel.c4
1 files changed, 0 insertions, 4 deletions
diff --git a/sys/x86/cpufreq/hwpstate_intel.c b/sys/x86/cpufreq/hwpstate_intel.c
index 56a33fa88e66..4cb80e4b2d44 100644
--- a/sys/x86/cpufreq/hwpstate_intel.c
+++ b/sys/x86/cpufreq/hwpstate_intel.c
@@ -362,9 +362,7 @@ intel_hwpstate_hybrid_cb(void *ctx)
void
intel_hwpstate_identify(driver_t *driver, device_t parent)
{
-#ifndef __i386__
uint32_t small_cores = 0;
-#endif
if (device_find_child(parent, "hwpstate_intel", DEVICE_UNIT_ANY) != NULL)
return;
@@ -385,7 +383,6 @@ intel_hwpstate_identify(driver_t *driver, device_t parent)
if ((cpu_power_eax & CPUTPM1_HWP) == 0)
return;
-#ifndef __i386__
/*
* On hybrid-core systems, package-level control cannot be used.
* It may cause all cores to run at the E-core frequency because
@@ -396,7 +393,6 @@ intel_hwpstate_identify(driver_t *driver, device_t parent)
intel_hwpstate_hybrid_cb, smp_no_rendezvous_barrier, &small_cores);
if (small_cores > 0 && small_cores < mp_ncores)
hwpstate_pkg_ctrl_enable = false;
-#endif
if (BUS_ADD_CHILD(parent, 10, "hwpstate_intel", device_get_unit(parent))
== NULL)