Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
adam.huang
Arm Trusted Firmware
Commits
e976e1fd
Unverified
Commit
e976e1fd
authored
Sep 07, 2018
by
Dimitris Papastamos
Committed by
GitHub
Sep 07, 2018
Browse files
Merge pull request #1562 from antonio-nino-diaz-arm/an/bl31-warn
Convert BL31 error message into warning
parents
783fd8e0
46b9aa76
Changes
1
Hide whitespace changes
Inline
Side-by-side
bl31/bl31_main.c
View file @
e976e1fd
...
...
@@ -109,7 +109,8 @@ void bl31_main(void)
int32_t
rc
=
(
*
bl32_init
)();
if
(
rc
!=
0
)
{
ERROR
(
"BL31: BL32 initialization failed (rc = %d)"
,
rc
);
WARN
(
"BL31: BL32 initialization failed (rc = %d)
\n
"
,
rc
);
}
}
/*
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment