Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

platform/x86/intel/uncore-freq: Move to uncore-frequency folder

Move the current driver from platform/x86/intel/uncore-frequency.c
to platform/x86/intel/uncore-frequency/uncore-frequency.c.

No functional changes are expected.

Signed-off-by: Srinivas Pandruvada <srinivas.pandruvada@intel.com>
Acked-by: Rafael J. Wysocki <rafael.j.wysocki@intel.com>
Link: https://lore.kernel.org/r/20220204000306.2517447-2-srinivas.pandruvada@linux.intel.com
Signed-off-by: Hans de Goede <hdegoede@redhat.com>

authored by

Srinivas Pandruvada and committed by
Hans de Goede
ce2645c4 2546c600

+33 -15
+1 -1
MAINTAINERS
··· 9908 9908 M: Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com> 9909 9909 L: platform-driver-x86@vger.kernel.org 9910 9910 S: Maintained 9911 - F: drivers/platform/x86/intel/uncore-frequency.c 9911 + F: drivers/platform/x86/intel/uncore-frequency/ 9912 9912 9913 9913 INTEL VENDOR SPECIFIC EXTENDED CAPABILITIES DRIVER 9914 9914 M: David E. Box <david.e.box@linux.intel.com>
+2 -12
drivers/platform/x86/intel/Kconfig
··· 11 11 source "drivers/platform/x86/intel/speed_select_if/Kconfig" 12 12 source "drivers/platform/x86/intel/telemetry/Kconfig" 13 13 source "drivers/platform/x86/intel/wmi/Kconfig" 14 + source "drivers/platform/x86/intel/uncore-frequency/Kconfig" 15 + 14 16 15 17 config INTEL_HID_EVENT 16 18 tristate "Intel HID Event" ··· 191 189 192 190 This driver is only required when the system is not using Hardware 193 191 P-States (HWP). In HWP mode, priority can be read from ACPI tables. 194 - 195 - config INTEL_UNCORE_FREQ_CONTROL 196 - tristate "Intel Uncore frequency control driver" 197 - depends on X86_64 198 - help 199 - This driver allows control of Uncore frequency limits on 200 - supported server platforms. 201 - 202 - Uncore frequency controls RING/LLC (last-level cache) clocks. 203 - 204 - To compile this driver as a module, choose M here: the module 205 - will be called intel-uncore-frequency. 206 192 207 193 config INTEL_VSEC 208 194 tristate "Intel Vendor Specific Extended Capabilities Driver"
+2 -2
drivers/platform/x86/intel/Makefile
··· 12 12 obj-$(CONFIG_INTEL_SPEED_SELECT_INTERFACE) += speed_select_if/ 13 13 obj-$(CONFIG_INTEL_TELEMETRY) += telemetry/ 14 14 obj-$(CONFIG_INTEL_WMI) += wmi/ 15 + obj-$(CONFIG_INTEL_UNCORE_FREQ_CONTROL) += uncore-frequency/ 16 + 15 17 16 18 # Intel input drivers 17 19 intel-hid-y := hid.o ··· 53 51 obj-$(CONFIG_INTEL_SMARTCONNECT) += intel-smartconnect.o 54 52 intel_turbo_max_3-y := turbo_max_3.o 55 53 obj-$(CONFIG_INTEL_TURBO_MAX_3) += intel_turbo_max_3.o 56 - intel-uncore-frequency-y := uncore-frequency.o 57 - obj-$(CONFIG_INTEL_UNCORE_FREQ_CONTROL) += intel-uncore-frequency.o
drivers/platform/x86/intel/uncore-frequency.c drivers/platform/x86/intel/uncore-frequency/uncore-frequency.c
+21
drivers/platform/x86/intel/uncore-frequency/Kconfig
··· 1 + # SPDX-License-Identifier: GPL-2.0-only 2 + # 3 + # Uncore Frquency control drivers 4 + # 5 + 6 + menu "Intel Uncore Frequency Control" 7 + depends on X86_64 || COMPILE_TEST 8 + 9 + config INTEL_UNCORE_FREQ_CONTROL 10 + tristate "Intel Uncore frequency control driver" 11 + depends on X86_64 12 + help 13 + This driver allows control of Uncore frequency limits on 14 + supported server platforms. 15 + 16 + Uncore frequency controls RING/LLC (last-level cache) clocks. 17 + 18 + To compile this driver as a module, choose M here: the module 19 + will be called intel-uncore-frequency. 20 + 21 + endmenu
+7
drivers/platform/x86/intel/uncore-frequency/Makefile
··· 1 + # SPDX-License-Identifier: GPL-2.0 2 + # 3 + # Makefile for linux/drivers/platform/x86/intel/uncore-frequency 4 + # 5 + 6 + obj-$(CONFIG_INTEL_UNCORE_FREQ_CONTROL) += intel-uncore-frequency.o 7 + intel-uncore-frequency-y := uncore-frequency.o