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
a7e62f1d
Commit
a7e62f1d
authored
Apr 14, 2020
by
Sandrine Bailleux
Committed by
TrustedFirmware Code Review
Apr 14, 2020
Browse files
Merge "stingray: fix coverity reported issues on brcm platform" into integration
parents
1a63443c
21767166
Changes
2
Hide whitespace changes
Inline
Side-by-side
plat/brcm/board/stingray/src/bl2_setup.c
View file @
a7e62f1d
...
...
@@ -682,7 +682,7 @@ void plat_bcm_bl2_plat_arch_setup(void)
bcm_board_detect
();
#ifdef DRIVER_EMMC_ENABLE
/* Initialize the card, if it is not */
if
(
bcm_emmc_init
(
true
)
<
0
)
if
(
bcm_emmc_init
(
true
)
==
0
)
WARN
(
"eMMC Card Initialization Failed!!!
\n
"
);
#endif
...
...
plat/brcm/board/stingray/src/paxb.c
View file @
a7e62f1d
...
...
@@ -485,7 +485,7 @@ static void pcie_ss_reset(void)
*/
static
int
pcie_cores_init
(
void
)
{
int
ret
;
int
ret
=
0
;
uint32_t
core_idx
;
if
(
paxb
->
pipemux_init
)
{
...
...
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