[U-Boot] [PATCH 1/1] vexpress: fix syntax error in	armv7_boot_nonsec_default()
    Heinrich Schuchardt 
    xypron.glpk at gmx.de
       
    Tue Apr 10 21:11:53 UTC 2018
    
    
  
With CONFIG_ARMV7_BOOT_SEC_DEFAULT=y a syntax error occurs.
Add the missing semicolon.
Signed-off-by: Heinrich Schuchardt <xypron.glpk at gmx.de>
---
 board/armltd/vexpress/vexpress_tc2.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/board/armltd/vexpress/vexpress_tc2.c b/board/armltd/vexpress/vexpress_tc2.c
index b143e04097..9cd0ec8ea0 100644
--- a/board/armltd/vexpress/vexpress_tc2.c
+++ b/board/armltd/vexpress/vexpress_tc2.c
@@ -18,7 +18,7 @@
 bool armv7_boot_nonsec_default(void)
 {
 #ifdef CONFIG_ARMV7_BOOT_SEC_DEFAULT
-	return false
+	return false;
 #else
 	/*
 	 * The Serial Configuration Controller (SCC) register at address 0x700
-- 
2.14.2
    
    
More information about the U-Boot
mailing list