-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
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>
- Loading branch information
Srinivas Pandruvada
authored and
Hans de Goede
committed
Feb 17, 2022
1 parent
2546c60
commit ce2645c
Showing
6 changed files
with
33 additions
and
15 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
# SPDX-License-Identifier: GPL-2.0-only | ||
# | ||
# Uncore Frquency control drivers | ||
# | ||
|
||
menu "Intel Uncore Frequency Control" | ||
depends on X86_64 || COMPILE_TEST | ||
|
||
config INTEL_UNCORE_FREQ_CONTROL | ||
tristate "Intel Uncore frequency control driver" | ||
depends on X86_64 | ||
help | ||
This driver allows control of Uncore frequency limits on | ||
supported server platforms. | ||
|
||
Uncore frequency controls RING/LLC (last-level cache) clocks. | ||
|
||
To compile this driver as a module, choose M here: the module | ||
will be called intel-uncore-frequency. | ||
|
||
endmenu |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
# SPDX-License-Identifier: GPL-2.0 | ||
# | ||
# Makefile for linux/drivers/platform/x86/intel/uncore-frequency | ||
# | ||
|
||
obj-$(CONFIG_INTEL_UNCORE_FREQ_CONTROL) += intel-uncore-frequency.o | ||
intel-uncore-frequency-y := uncore-frequency.o |
File renamed without changes.