soc/intel/skylake: Rename `Rmt` devicetree setting

Rename `Rmt` to `RMT` for consistency with the UPD name.

Change-Id: I905b9b65fa6c5711c6e726cc09d3cad5ba3640a1
Signed-off-by: Angel Pons <th3fanbus@gmail.com>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/56206
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by:  Felix Singer <felixsinger@posteo.net>
Reviewed-by: Michael Niewöhner <foss@mniewoehner.de>
This commit is contained in:
Angel Pons 2021-07-12 11:09:55 +02:00 committed by Patrick Georgi
parent 6386cc9973
commit 2837cf8182
2 changed files with 2 additions and 2 deletions

View File

@ -94,7 +94,7 @@ struct soc_intel_skylake_config {
} SaGv;
/* Enable/disable Rank Margin Tool */
u8 Rmt;
u8 RMT;
/* Disable Command TriState */
u8 CmdTriStateDis;

View File

@ -83,7 +83,7 @@ static void soc_memory_init_params(FSP_M_CONFIG *m_cfg,
m_cfg->ProbelessTrace = 0;
m_cfg->SaGv = config->SaGv;
m_cfg->UserBd = BOARD_TYPE_ULT_ULX;
m_cfg->RMT = config->Rmt;
m_cfg->RMT = config->RMT;
m_cfg->CmdTriStateDis = config->CmdTriStateDis;
m_cfg->DdrFreqLimit = 0;
m_cfg->VmxEnable = CONFIG(ENABLE_VMX);