mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-15 09:27:35 +00:00
17 lines
243 B
C
17 lines
243 B
C
|
/* SPDX-License-Identifier: GPL-2.0+ */
|
||
|
|
||
|
#ifndef __SL28_H
|
||
|
#define __SL28_H
|
||
|
|
||
|
enum boot_source {
|
||
|
BOOT_SOURCE_UNKNOWN,
|
||
|
BOOT_SOURCE_SDHC,
|
||
|
BOOT_SOURCE_MMC,
|
||
|
BOOT_SOURCE_I2C,
|
||
|
BOOT_SOURCE_SPI,
|
||
|
};
|
||
|
|
||
|
enum boot_source sl28_boot_source(void);
|
||
|
|
||
|
#endif
|