blob: 6b20368ee4408c75d47af5904cfe4a3935a1a9bf [file] [log] [blame]
Gabe Black3c7e9392013-05-26 07:15:57 -07001/*
2 * This file is part of the coreboot project.
3 *
4 * Copyright (C) 2013 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.
Gabe Black3c7e9392013-05-26 07:15:57 -070014 */
15
Aaron Durbinc6588c52015-05-15 13:15:34 -050016#include <boot_device.h>
Gabe Black3c7e9392013-05-26 07:15:57 -070017
Aaron Durbinc6588c52015-05-15 13:15:34 -050018const struct region_device *boot_device_ro(void)
19{
Aaron Durbinc6588c52015-05-15 13:15:34 -050020 /* FIXME: add support for reading coreboot from NAND */
Aaron Durbin899d13d2015-05-15 23:39:23 -050021 return NULL;
Gabe Black3c7e9392013-05-26 07:15:57 -070022}