mirror of
https://github.com/Fishwaldo/u-boot.git
synced 2025-03-21 14:41:31 +00:00
imx7: spl: Use SPL boot device MMC1 for all of the SOCs MMC/SD boot devices
Use only one SPL MMC device, similarly to the iMX6 code Signed-off-by: Eran Matityahu <eran.m@variscite.com>
This commit is contained in:
parent
a3cc43551f
commit
cd9f3ff651
1 changed files with 1 additions and 2 deletions
|
@ -106,10 +106,9 @@ u32 spl_boot_device(void)
|
||||||
switch (boot_device_spl) {
|
switch (boot_device_spl) {
|
||||||
case SD1_BOOT:
|
case SD1_BOOT:
|
||||||
case MMC1_BOOT:
|
case MMC1_BOOT:
|
||||||
return BOOT_DEVICE_MMC1;
|
|
||||||
case SD2_BOOT:
|
case SD2_BOOT:
|
||||||
case MMC2_BOOT:
|
case MMC2_BOOT:
|
||||||
return BOOT_DEVICE_MMC2;
|
return BOOT_DEVICE_MMC1;
|
||||||
case SPI_NOR_BOOT:
|
case SPI_NOR_BOOT:
|
||||||
return BOOT_DEVICE_SPI;
|
return BOOT_DEVICE_SPI;
|
||||||
default:
|
default:
|
||||||
|
|
Loading…
Add table
Reference in a new issue