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:
parent
6386cc9973
commit
2837cf8182
|
@ -94,7 +94,7 @@ struct soc_intel_skylake_config {
|
|||
} SaGv;
|
||||
|
||||
/* Enable/disable Rank Margin Tool */
|
||||
u8 Rmt;
|
||||
u8 RMT;
|
||||
|
||||
/* Disable Command TriState */
|
||||
u8 CmdTriStateDis;
|
||||
|
|
|
@ -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);
|
||||
|
|
Loading…
Reference in New Issue