aboutsummaryrefslogtreecommitdiff
path: root/src/mainboard/google/kahlee/variants/kahlee/memory.c
blob: 1c7c8a11f3ef1ce761d00411b3d9d2fb6535e5e3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
/*
 * This file is part of the coreboot project.
 *
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation; version 2 of the License.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 */

#include <baseboard/variants.h>

int variant_mainboard_read_spd(uint8_t spdAddress, char *buf, size_t len)
{
	/* Return error so the default I2C SPD read is used */
	return -1;
}