The comment in get_boot_type says that bit 5 indicates if we are
peripheral or memory booting, but the mask wasn't including this.  Fix.

Signed-off-by: Tom Rini <tr...@ti.com>
---
 arch/arm/include/asm/arch-omap3/cpu.h |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/arch/arm/include/asm/arch-omap3/cpu.h 
b/arch/arm/include/asm/arch-omap3/cpu.h
index 84308e0..ea95a1e 100644
--- a/arch/arm/include/asm/arch-omap3/cpu.h
+++ b/arch/arm/include/asm/arch-omap3/cpu.h
@@ -78,7 +78,7 @@ struct ctrl_id {
 
 /* device type */
 #define DEVICE_MASK            (0x7 << 8)
-#define SYSBOOT_MASK           0x1F
+#define SYSBOOT_MASK           0x3F
 #define TST_DEVICE             0x0
 #define EMU_DEVICE             0x1
 #define HS_DEVICE              0x2
-- 
1.7.0.4

_______________________________________________
U-Boot mailing list
U-Boot@lists.denx.de
http://lists.denx.de/mailman/listinfo/u-boot

Reply via email to