blob: 6987f5766960a7c4ab65f50973bf001f1f62d366 [file] [log] [blame]
Masahiro Yamadabb2ff9d2014-10-03 19:21:06 +09001/*
2 * Copyright (C) 2011-2014 Panasonic Corporation
3 * Author: Masahiro Yamada <yamada.m@jp.panasonic.com>
4 *
5 * SPDX-License-Identifier: GPL-2.0+
6 */
7
8#ifndef _ASM_BOOT_DEVICE_H_
9#define _ASM_BOOT_DEVICE_H_
10
11u32 get_boot_mode_sel(void);
12
13struct boot_device_info {
14 u32 type;
15 char *info;
16};
17
18extern struct boot_device_info boot_device_table[];
19
20#endif /* _ASM_BOOT_DEVICE_H_ */