projects
/
platform
/
kernel
/
u-boot.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
Merge https://gitlab.denx.de/u-boot/custodians/u-boot-net
[platform/kernel/u-boot.git]
/
arch
/
arm
/
cpu
/
armv7
/
ls102xa
/
spl.c
1
// SPDX-License-Identifier: GPL-2.0+
2
/*
3
* Copyright 2014 Freescale Semiconductor, Inc.
4
*/
5
6
#include <common.h>
7
#include <spl.h>
8
9
u32 spl_boot_device(void)
10
{
11
#ifdef CONFIG_SPL_MMC_SUPPORT
12
return BOOT_DEVICE_MMC1;
13
#endif
14
return BOOT_DEVICE_NAND;
15
}