blob: eec9b7353b3a522a818511b278a3654c48d3763a [file] [log] [blame]
Furquan Shaikh76570572014-03-19 14:29:48 -07001/*
2 * This file is part of the coreboot project.
3 *
4 * Copyright 2014 Google Inc.
5 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; version 2 of the License.
9 *
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
14 *
15 * You should have received a copy of the GNU General Public License
16 * along with this program; if not, write to the Free Software
17 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
18 */
19
20
21#include <cbfs.h> /* This driver serves as a CBFS media source. */
22
23int init_default_cbfs_media(struct cbfs_media *media)
24{
25 return 0;
26}
Vadim Bendebury476f7312014-04-08 18:45:46 -070027
28/*
29 * Temporary change to make sure storm code still builds. Will be dropped
30 * shortly.
31 */
32#include <delay.h> /* This driver serves as a CBFS media source. */
33void init_timer(void)
34{
35}