aboutsummaryrefslogtreecommitdiff
path: root/src/soc/intel/common/block/cpu/cpulib.c
diff options
context:
space:
mode:
authorMichael Niewöhner <foss@mniewoehner.de>2020-09-15 12:20:08 +0200
committerMichael Niewöhner <foss@mniewoehner.de>2020-09-21 15:51:01 +0000
commit490546f191cf2aa1aceec97b7d0503f4fb4408f4 (patch)
tree6c4982abda83d97c9a8afecd09b0724221b8605c /src/soc/intel/common/block/cpu/cpulib.c
parent1dac89633e99f57bf4abc000c1de174dd9f2563a (diff)
soc/intel: rename get_prmrr_size
get_prmrr_size does not return the actual PRMRR size but a valid PRMRR size with repect to the users choice in Kconfig. Thus, rename it from `get_prmrr_size` to `get_valid_prmrr_size` to avoid confusion about what it does. Also fix the broken comment in cpulib.h. Change-Id: Id243be50acb741f2c3118ddde082743d08983a53 Signed-off-by: Michael Niewöhner <foss@mniewoehner.de> Reviewed-on: https://review.coreboot.org/c/coreboot/+/45414 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Nico Huber <nico.h@gmx.de>
Diffstat (limited to 'src/soc/intel/common/block/cpu/cpulib.c')
-rw-r--r--src/soc/intel/common/block/cpu/cpulib.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/soc/intel/common/block/cpu/cpulib.c b/src/soc/intel/common/block/cpu/cpulib.c
index 9ff7923664..cbf9b1b9dd 100644
--- a/src/soc/intel/common/block/cpu/cpulib.c
+++ b/src/soc/intel/common/block/cpu/cpulib.c
@@ -340,7 +340,7 @@ void cpu_lt_lock_memory(void *unused)
msr_set_bit(MSR_LT_CONTROL, LT_CONTROL_LOCK_BIT);
}
-int get_prmrr_size(void)
+int get_valid_prmrr_size(void)
{
msr_t msr;
int i;