blob: 669639be7ccb2ce7109b0ce1b4b476ca5fd28743 [file] [log] [blame]
Kyösti Mälkki36abdc42014-05-05 16:40:15 +03001/*
2 * This file is part of the coreboot project.
3 *
4 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License as published by
6 * the Free Software Foundation; either version 2 of the License, or
7 * (at your option) any later version.
8 *
9 * This program is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
Kyösti Mälkki36abdc42014-05-05 16:40:15 +030013 */
14
15#ifndef _SPD_CACHE_H_
16#define _SPD_CACHE_H_
17
18#include <stdint.h>
19
20#if IS_ENABLED(CONFIG_SPD_CACHE)
21int read_spd_from_cbfs(u8 *buf, int idx);
22#else
23static inline int read_spd_from_cbfs(u8 *buf, int idx) { return -1; }
24#endif
25
26#endif