blob: 1e4a1641cb95f8fd13b0147641a28356269de566 [file] [log] [blame]
Alison Wang9da51782014-12-03 15:00:47 +08001/*
2 * Copyright 2014 Freescale Semiconductor, Inc.
3 *
4 * SPDX-License-Identifier: GPL-2.0+
5 */
6
7#include <common.h>
8#include <spl.h>
9
10u32 spl_boot_device(void)
11{
12#ifdef CONFIG_SPL_MMC_SUPPORT
13 return BOOT_DEVICE_MMC1;
14#endif
15 return BOOT_DEVICE_NAND;
16}