Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
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
5 years ago
by
Sandrine Bailleux
Committed by
TrustedFirmware Code Review
5 years ago
Browse files
Options
Download
Plain Diff
Merge "stingray: fix coverity reported issues on brcm platform" into integration
parents
1a63443c
21767166
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
plat/brcm/board/stingray/src/bl2_setup.c
+1
-1
plat/brcm/board/stingray/src/bl2_setup.c
plat/brcm/board/stingray/src/paxb.c
+1
-1
plat/brcm/board/stingray/src/paxb.c
with
2 additions
and
2 deletions
+2
-2
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
...
...
This diff is collapsed.
Click to expand it.
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
)
{
...
...
This diff is collapsed.
Click to expand it.
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
Menu
Projects
Groups
Snippets
Help