nt9856x/rtos/BSP/u-boot/arch/arm/cpu/armv7/ls102xa/spl.c
2023-03-28 15:07:53 +08:00

16 lines
250 B
C

// 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_SUPPORT
return BOOT_DEVICE_MMC1;
#endif
return BOOT_DEVICE_NAND;
}