blob: 8eeb48291a9055b55d83ba1cbb8c4773d6e540f9 (
plain)
1
2
3
4
5
6
7
8
9
10
|
/* SPDX-License-Identifier: GPL-2.0-only */
#include <northbridge/intel/sandybridge/raminit.h>
void mb_get_spd_map(struct spd_info *spdi)
{
spdi->addresses[0] = SPD_MEMORY_DOWN;
spdi->addresses[2] = SPD_MEMORY_DOWN;
spdi->spd_index = 0;
}
|