diff options
-rw-r--r-- | sys/amd64/conf/GENERIC | 3 | ||||
-rw-r--r-- | sys/amd64/conf/NOTES | 3 | ||||
-rw-r--r-- | sys/i386/conf/GENERIC | 3 | ||||
-rw-r--r-- | sys/i386/conf/NOTES | 3 |
4 files changed, 6 insertions, 6 deletions
diff --git a/sys/amd64/conf/GENERIC b/sys/amd64/conf/GENERIC index c5ea67f..8ff546a 100644 --- a/sys/amd64/conf/GENERIC +++ b/sys/amd64/conf/GENERIC @@ -75,6 +75,9 @@ options WITNESS_SKIPSPIN # Don't run witness on spinlocks for speed # Make an SMP-capable kernel by default options SMP # Symmetric MultiProcessor Kernel +# CPU frequency control +device cpufreq + # Bus support. device acpi device pci diff --git a/sys/amd64/conf/NOTES b/sys/amd64/conf/NOTES index 0fa1a70..e82086f 100644 --- a/sys/amd64/conf/NOTES +++ b/sys/amd64/conf/NOTES @@ -283,9 +283,6 @@ device acpi options ACPI_DEBUG #!options ACPI_NO_SEMAPHORES -# The cpufreq(4) driver provides support for non-ACPI CPU frequency control -device cpufreq - # Direct Rendering modules for 3D acceleration. device drm # DRM core module required by DRM drivers device i915drm # Intel i830 through i915 diff --git a/sys/i386/conf/GENERIC b/sys/i386/conf/GENERIC index 30e3d149..e0bbdbe 100644 --- a/sys/i386/conf/GENERIC +++ b/sys/i386/conf/GENERIC @@ -76,6 +76,9 @@ options WITNESS_SKIPSPIN # Don't run witness on spinlocks for speed options SMP # Symmetric MultiProcessor Kernel device apic # I/O APIC +# CPU frequency control +device cpufreq + # Bus support. device eisa device pci diff --git a/sys/i386/conf/NOTES b/sys/i386/conf/NOTES index 2e7c181..8856139 100644 --- a/sys/i386/conf/NOTES +++ b/sys/i386/conf/NOTES @@ -540,9 +540,6 @@ device acpi_video # ACPI Docking Station device acpi_dock -# The cpufreq(4) driver provides support for non-ACPI CPU frequency control -device cpufreq - # Direct Rendering modules for 3D acceleration. device drm # DRM core module required by DRM drivers device i915drm # Intel i830 through i915 |