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