mirror of
https://github.com/Fishwaldo/u-boot.git
synced 2025-03-19 13:41:31 +00:00
vexpress: fix syntax error in armv7_boot_nonsec_default()
With CONFIG_ARMV7_BOOT_SEC_DEFAULT=y a syntax error occurs. Add the missing semicolon. Signed-off-by: Heinrich Schuchardt <xypron.glpk@gmx.de>
This commit is contained in:
parent
d291d8235b
commit
901b77b9c8
1 changed files with 1 additions and 1 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Reference in a new issue