Tom Rini | 10e4779 | 2018-05-06 17:58:06 -0400 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0+ |
Alison Wang | 9da5178 | 2014-12-03 15:00:47 +0800 | [diff] [blame] | 2 | /* |
3 | * Copyright 2014 Freescale Semiconductor, Inc. | ||||
Alison Wang | 9da5178 | 2014-12-03 15:00:47 +0800 | [diff] [blame] | 4 | */ |
5 | |||||
Alison Wang | 9da5178 | 2014-12-03 15:00:47 +0800 | [diff] [blame] | 6 | #include <spl.h> |
7 | |||||
8 | u32 spl_boot_device(void) | ||||
9 | { | ||||
Simon Glass | b58bfe0 | 2021-08-08 12:20:09 -0600 | [diff] [blame] | 10 | #ifdef CONFIG_SPL_MMC |
Alison Wang | 9da5178 | 2014-12-03 15:00:47 +0800 | [diff] [blame] | 11 | return BOOT_DEVICE_MMC1; |
12 | #endif | ||||
13 | return BOOT_DEVICE_NAND; | ||||
14 | } |