Gitiles
Code Review
Sign In
git01.mediatek.com
/
filogic
/
uboot
/
a6c078c5b0262834efc67ba6e3b81220e4955fbf
/
.
/
arch
/
arm
/
cpu
/
armv7
/
ls102xa
/
spl.c
blob: a19496862359aa1a1d8b8209e02a268ccdec5037 [
file
] [
log
] [
blame
]
// SPDX-License-Identifier: GPL-2.0+
/*
* Copyright 2014 Freescale Semiconductor, Inc.
*/
#include
<common.h>
#include
<spl.h>
u32 spl_boot_device
(
void
)
{
#ifdef
CONFIG_SPL_MMC
return
BOOT_DEVICE_MMC1
;
#endif
return
BOOT_DEVICE_NAND
;
}