]> git.sur5r.net Git - u-boot/blob - arch/arm/cpu/armv7/ls102xa/spl.c
Merge branch 'master' of git://git.denx.de/u-boot-sunxi
[u-boot] / 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 }