blob: 374de92d026c8697b03ce2a34fdcff7f8e8f4c4d [file] [log] [blame]
Tom Rini10e47792018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
Alison Wang9da51782014-12-03 15:00:47 +08002/*
3 * Copyright 2014 Freescale Semiconductor, Inc.
Alison Wang9da51782014-12-03 15:00:47 +08004 */
5
Alison Wang9da51782014-12-03 15:00:47 +08006#include <spl.h>
7
8u32 spl_boot_device(void)
9{
Simon Glassb58bfe02021-08-08 12:20:09 -060010#ifdef CONFIG_SPL_MMC
Alison Wang9da51782014-12-03 15:00:47 +080011 return BOOT_DEVICE_MMC1;
12#endif
13 return BOOT_DEVICE_NAND;
14}