diff options
| author | Bin Meng <[email protected]> | 2015-10-11 21:37:47 -0700 |
|---|---|---|
| committer | Simon Glass <[email protected]> | 2015-10-21 07:46:27 -0600 |
| commit | c6c80d8b3e8d35a6c025abfd14606e8ac21aea30 (patch) | |
| tree | b577671af0f9d6709c61ca645e9ef012c8450380 | |
| parent | ec73da82a660d7a5a48e30309dffe2c54aec1854 (diff) | |
x86: ivybridge: Correct two typos for MRC
It should be MRC, not MCR.
Signed-off-by: Bin Meng <[email protected]>
Acked-by: Simon Glass <[email protected]>
| -rw-r--r-- | arch/x86/cpu/ivybridge/sdram.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/x86/cpu/ivybridge/sdram.c b/arch/x86/cpu/ivybridge/sdram.c index 9121426cae3..fc66a3c3a59 100644 --- a/arch/x86/cpu/ivybridge/sdram.c +++ b/arch/x86/cpu/ivybridge/sdram.c @@ -363,7 +363,7 @@ int sdram_initialise(struct pei_data *pei_data) debug("System Agent Version %d.%d.%d Build %d\n", version >> 24 , (version >> 16) & 0xff, (version >> 8) & 0xff, version & 0xff); - debug("MCR output data length %#x at %p\n", pei_data->mrc_output_len, + debug("MRC output data length %#x at %p\n", pei_data->mrc_output_len, pei_data->mrc_output); /* @@ -723,7 +723,7 @@ int dram_init(void) int ret; debug("Boot mode %d\n", gd->arch.pei_boot_mode); - debug("mcr_input %p\n", pei_data.mrc_input); + debug("mrc_input %p\n", pei_data.mrc_input); pei_data.boot_mode = gd->arch.pei_boot_mode; ret = copy_spd(&pei_data); if (!ret) |
