]> Git Repo - J-u-boot.git/blob - arch/arm/cpu/armv7/ls102xa/spl.c
mmc: Rename MMC_SUPPORT to MMC
[J-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
12         return BOOT_DEVICE_MMC1;
13 #endif
14         return BOOT_DEVICE_NAND;
15 }
This page took 0.026759 seconds and 4 git commands to generate.