diff --git a/src/mainboard/google/glados/romstage.c b/src/mainboard/google/glados/romstage.c index 315ddb9de8..69e6e0d872 100644 --- a/src/mainboard/google/glados/romstage.c +++ b/src/mainboard/google/glados/romstage.c @@ -21,7 +21,6 @@ #include #include -#include #include #include #include @@ -77,18 +76,3 @@ void mainboard_memory_init_params(struct romstage_params *params, memory_params->MemorySpdDataLen = SPD_LEN; memory_params->DqPinsInterleaved = FALSE; } - -void mainboard_add_dimm_info(struct romstage_params *params, - struct memory_info *mem_info, - int channel, int dimm, int index) -{ - /* Set the manufacturer */ - memcpy(&mem_info->dimm[index].mod_id, - ¶ms->pei_data->spd_data[channel][dimm][SPD_MANU_OFF], - sizeof(mem_info->dimm[index].mod_id)); - - /* Set the module part number */ - memcpy(mem_info->dimm[index].module_part_number, - ¶ms->pei_data->spd_data[channel][dimm][SPD_PART_OFF], - sizeof(mem_info->dimm[index].module_part_number)); -} diff --git a/src/mainboard/intel/kunimitsu/romstage.c b/src/mainboard/intel/kunimitsu/romstage.c index af16dced97..a0eeafc9a5 100644 --- a/src/mainboard/intel/kunimitsu/romstage.c +++ b/src/mainboard/intel/kunimitsu/romstage.c @@ -21,7 +21,6 @@ #include #include -#include #include #include #include @@ -77,18 +76,3 @@ void mainboard_memory_init_params(struct romstage_params *params, memory_params->MemorySpdDataLen = SPD_LEN; memory_params->DqPinsInterleaved = FALSE; } - -void mainboard_add_dimm_info(struct romstage_params *params, - struct memory_info *mem_info, - int channel, int dimm, int index) -{ - /* Set the manufacturer */ - memcpy(&mem_info->dimm[index].mod_id, - ¶ms->pei_data->spd_data[channel][dimm][SPD_MANU_OFF], - sizeof(mem_info->dimm[index].mod_id)); - - /* Set the module part number */ - memcpy(mem_info->dimm[index].module_part_number, - ¶ms->pei_data->spd_data[channel][dimm][SPD_PART_OFF], - sizeof(mem_info->dimm[index].module_part_number)); -}