diff options
author | Alexander Graf <agraf@suse.de> | 2016-03-01 09:56:34 +0100 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2016-03-08 15:01:46 -0500 |
commit | 22d90d560a2b01c47f180e196e6c6485eb8e65db (patch) | |
tree | 78d8539010f8daef8948f71d592632eb9ece829a /arch | |
parent | 22aa61f707574dd569296f521fcfc46a05f51c48 (diff) | |
download | u-boot-22d90d560a2b01c47f180e196e6c6485eb8e65db.tar.gz |
omap3: Use raw SPL by default for mmc1
Now that we fall back to the FS code path when we don't find u-boot
at the raw sector offset, there is no good reason to not default to
raw boot.
With this patch, I can successfully boot u-boot from a raw sector
offset on beagle-xm.
Signed-off-by: Alexander Graf <agraf@suse.de>
Diffstat (limited to 'arch')
-rw-r--r-- | arch/arm/cpu/armv7/omap-common/boot-common.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/arch/arm/cpu/armv7/omap-common/boot-common.c b/arch/arm/cpu/armv7/omap-common/boot-common.c index 0456263d6e..ed9ba7b5d3 100644 --- a/arch/arm/cpu/armv7/omap-common/boot-common.c +++ b/arch/arm/cpu/armv7/omap-common/boot-common.c @@ -111,8 +111,6 @@ void save_omap_boot_params(void) (boot_device <= MMC_BOOT_DEVICES_END)) { switch (boot_device) { case BOOT_DEVICE_MMC1: - boot_mode = MMCSD_MODE_FS; - break; case BOOT_DEVICE_MMC2: boot_mode = MMCSD_MODE_RAW; break; |